From e189a61c21a869c84702716dc9e1cff7efa89841 Mon Sep 17 00:00:00 2001 From: sian Date: Tue, 8 Nov 2022 10:48:55 +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 --- supplier/goods.go | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/supplier/goods.go b/supplier/goods.go index dfc6cab..a803995 100644 --- a/supplier/goods.go +++ b/supplier/goods.go @@ -25,19 +25,19 @@ type ArgsGoodsList struct { } type GoodsItem struct { - Id uint `json:"id"` - Name string `json:"name"` - Img string `json:"img"` - GoodsNum string `json:"goodsNum"` - CategoryId uint `json:"categoryId"` - BrandId uint `json:"brandId"` - BrandName string `json:"brandName"` - SkuItems []GoodsItemLists `json:"skuItems"` - UpcCodes []string `json:"upcCodes"` - StockCount uint `json:"stockCount"` - MinPrice decimal.Decimal `json:"minPrice"` - GuidePrice decimal.Decimal `json:"guidePrice"` - CreatedAt int64 `json:"createdAt"` + Id uint `json:"id"` + Name string `json:"name"` + Img string `json:"img"` + GoodsNum string `json:"goodsNum"` + CategoryId uint `json:"categoryId"` + BrandId uint `json:"brandId"` + BrandName string `json:"brandName"` + SkuItems []GoodsItemLists `json:"skuItems"` + UpcCodes []string `json:"upcCodes"` + StockCount uint `json:"stockCount"` + GuidePrices []decimal.Decimal `json:"guidePrices"` + SupplyPrices []decimal.Decimal `json:"supplyPrices"` + CreatedAt int64 `json:"createdAt"` } type GoodsItemLists struct {