|
|
|
@ -148,24 +148,29 @@ func (s *sku) Lists(ctx context.Context, args ArgsSkuLists) (reply ReplySkuList,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SkuInfo struct {
|
|
|
|
|
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"`
|
|
|
|
|
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"`
|
|
|
|
|
Specifications []SkuSpecification `json:"specification"`
|
|
|
|
|
PlatformStatus uint `json:"platformStatus"`
|
|
|
|
|
SourceName string `json:"sourceName"`
|
|
|
|
|
AdjustType uint `json:"adjustType"`
|
|
|
|
|
AdjustPrice decimal.Decimal `json:"adjustPrice"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Info @Title 商品信息
|
|
|
|
|