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=废弃
@ -25,19 +25,19 @@ type ArgsGoodsList struct {
} }
type GoodsItem struct { type GoodsItem struct {
Id uint `json:"id"` Id uint `json:"id"`
Name string `json:"name"` Name string `json:"name"`
Img string `json:"img"` Img string `json:"img"`
GoodsNum string `json:"goodsNum"` GoodsNum string `json:"goodsNum"`
CategoryId uint `json:"categoryId"` CategoryId uint `json:"categoryId"`
BrandId uint `json:"brandId"` BrandId uint `json:"brandId"`
BrandName string `json:"brandName"` BrandName string `json:"brandName"`
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"`
} }
type GoodsItemLists struct { type GoodsItemLists struct {
@ -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