From b4ded1cb4445ec6c619aacfd2abba66099656892 Mon Sep 17 00:00:00 2001 From: sian Date: Mon, 1 Aug 2022 16:02:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supply/sku.go | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/supply/sku.go b/supply/sku.go index b572774..31b1dd1 100644 --- a/supply/sku.go +++ b/supply/sku.go @@ -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 商品信息