修改参数

finance
杨赟 2 years ago
parent 1128c7a5da
commit f408b436a1

@ -123,30 +123,30 @@ type SkuListsSearch struct {
} }
type ReplySkuList struct { type ReplySkuList struct {
Lists []SkuItem Lists []SkuItem `json:"lists"`
Total int64 Total int64 `json:"total"`
} }
type SkuItem struct { type SkuItem struct {
Id uint Id uint `json:"id"`
Name string // 名称 Name string `json:"name"` // 名称
BrandName string // 品牌名称 BrandName string `json:"brandName"` // 品牌名称
FirstCategoryId uint // 一级分类id FirstCategoryId uint `json:"firstCategoryId"` // 一级分类id
SecondCategoryId uint // 二级分类id SecondCategoryId uint `json:"secondCategoryId"` // 二级分类id
ThirdCategoryId uint // 三级分类id ThirdCategoryId uint `json:"thirdCategoryId"` // 三级分类id
SupplyPrice decimal.Decimal // 采购价 SupplyPrice decimal.Decimal `json:"supplyPrice"` // 采购价
GuidePrice decimal.Decimal // 指导价 GuidePrice decimal.Decimal `json:"guidePrice"` // 指导价
ImgUrl string // 商品主图 ImgUrl string `json:"imgUrl"` // 商品主图
PlatformStatus uint // 平台状态 1=上架 2=下架 PlatformStatus uint `json:"platformStatus"` // 平台状态 1=上架 2=下架
SourceName string // 供应商名称 SourceName string `json:"sourceName"` // 供应商名称
SourceSkuId string // 源skuId SourceSkuId string `json:"sourceSkuId"` // 源skuId
SourceStatus uint // 供应商状态 1=上架 2=下架 SourceStatus uint `json:"sourceStatus"` // 供应商状态 1=上架 2=下架
CustomerPrice decimal.Decimal // 供货最高价 CustomerPrice decimal.Decimal `json:"customerPrice"` // 供货最高价
CustomerProfitRate decimal.Decimal // 供货利润率 供货利润/供货最高价% CustomerProfitRate decimal.Decimal `json:"customerProfitRate"` // 供货利润率 供货利润/供货最高价%
AdjustType uint // 加价类型 AdjustType uint `json:"adjustType"` // 加价类型
AdjustPrice decimal.Decimal // 加价金额 AdjustPrice decimal.Decimal `json:"adjustPrice"` // 加价金额
Handle uint // 1=未处理 2=已处理 Handle uint `json:"handle"` // 1=未处理 2=已处理
Reason string // 驳回原因 Reason string `json:"reason"` // 驳回原因
} }
// Lists @Title 商品列表 // Lists @Title 商品列表

Loading…
Cancel
Save