Merge branch 'master' of git.oa00.com:supply-chain/service

finance
黄伟 2 years ago
commit 536b2848dd

@ -11,7 +11,7 @@ type goods struct {
} }
type GoodsSearch struct { type GoodsSearch struct {
Name string // 商品名称 Name string // 商品名称
CategoryId uint64 // 类目id CategoryIds []uint // 类目id
BrandName string // 品牌名 BrandName string // 品牌名
UpcCode string // 商品条码 UpcCode string // 商品条码
Handle uint // 处理状态 1=待处理 2=入库 3=废弃 Handle uint // 处理状态 1=待处理 2=入库 3=废弃
@ -35,8 +35,8 @@ type GoodsItem struct {
SkuItems []GoodsItemLists `json:"skuItems"` SkuItems []GoodsItemLists `json:"skuItems"`
UpcCodes []string `json:"upcCodes"` UpcCodes []string `json:"upcCodes"`
StockCount uint `json:"stockCount"` StockCount uint `json:"stockCount"`
MinPrice decimal.Decimal `json:"minPrice"` GuidePrices []decimal.Decimal `json:"guidePrices"`
GuidePrice decimal.Decimal `json:"guidePrice"` SupplyPrices []decimal.Decimal `json:"supplyPrices"`
CreatedAt int64 `json:"createdAt"` CreatedAt int64 `json:"createdAt"`
} }
@ -117,6 +117,7 @@ type SkuItem struct {
TaxCode string `json:"taxCode"` TaxCode string `json:"taxCode"`
Unit string `json:"uint"` Unit string `json:"uint"`
Tax decimal.Decimal `json:"tax"` Tax decimal.Decimal `json:"tax"`
Img string `json:"img"`
} }
// Info @Title 商品详情 // Info @Title 商品详情

Loading…
Cancel
Save