finance
黄伟 2 years ago
parent 417037f710
commit b4ded1cb44

@ -148,25 +148,24 @@ func (s *sku) Lists(ctx context.Context, args ArgsSkuLists) (reply ReplySkuList,
} }
type SkuInfo struct { type SkuInfo struct {
Id uint Id uint `json:"id"`
Name string // 名称 Name string `json:"name"`
BrandName string // 品牌名称 SourceSkuId string `json:"jdSkuId"`
FirstCategoryId uint // 一级分类id SupplyPrice decimal.Decimal `json:"supplyPrice"`
SecondCategoryId uint // 二级分类id GuidePrice decimal.Decimal `json:"guidePrice"`
ThirdCategoryId uint // 三级分类id Profit decimal.Decimal `json:"profit"`
SupplyPrice decimal.Decimal // 采购价 UpcCode string `json:"upcCode"`
GuidePrice decimal.Decimal // 指导价 Color string `json:"color"`
ImgUrl string // 商品主图 Size string `json:"size"`
PlatformStatus uint // 平台状态 1=上架 2=下架 FirstCategoryName string `json:"firstCategoryName"`
SourceName string // 供应商名称 SecondCategoryName string `json:"secondCategoryName"`
SourceSkuId string // 源skuId ThirdCategoryName string `json:"thirdCategoryName"`
SourceStatus uint // 供应商状态 1=上架 2=下架 BrandName string `json:"brandName"`
CustomerPrice decimal.Decimal // 供货最高价 Content string `json:"content"`
CustomerProfitRate decimal.Decimal // 供货利润率 供货利润/供货最高价% Tax string `json:"tax"`
AdjustType uint // 加价类型 Unit string `json:"unit"`
AdjustPrice decimal.Decimal // 加价金额 Imgs []SkuImg `json:"imgs"`
Handle uint // 1=未处理 2=已处理 Reason string `json:"reason"`
Reason string // 驳回原因
} }
// Info @Title 商品信息 // Info @Title 商品信息

Loading…
Cancel
Save