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