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