修改lists返回数据

finance
黄伟 2 years ago
parent 8e0a112f18
commit 671323e466

@ -93,7 +93,7 @@ type ArgsSkuLists struct {
type SkuListsSearch struct { type SkuListsSearch struct {
Name string // 商品名称 Name string // 商品名称
SourceId uint // 所属供应商 1=京东 SourceId uint // 所属供应商 1=京东
Id uint // 瑞库客id Id uint // 瑞库客id
SourceSkuId uint // 供应商skuId SourceSkuId uint // 供应商skuId
BrandId uint // 品牌Id BrandId uint // 品牌Id
@ -116,7 +116,7 @@ type ReplySkuList struct {
type SkuItem struct { type SkuItem struct {
Id uint Id uint
Name string // 名称 Name string // 名称
BrandId uint // 品牌id BrandName string // 品牌名称
FirstCategoryId uint // 一级分类id FirstCategoryId uint // 一级分类id
SecondCategoryId uint // 二级分类id SecondCategoryId uint // 二级分类id
ThirdCategoryId uint // 三级分类id ThirdCategoryId uint // 三级分类id
@ -124,7 +124,7 @@ type SkuItem struct {
GuidePrice decimal.Decimal // 指导价 GuidePrice decimal.Decimal // 指导价
ImgUrl string // 商品主图 ImgUrl string // 商品主图
PlatformStatus uint // 平台状态 1=上架 2=下架 PlatformStatus uint // 平台状态 1=上架 2=下架
SourceId uint // 来源 1=京东 SourceName string // 供应商名称
SourceSkuId string // 源skuId SourceSkuId string // 源skuId
SourceStatus uint // 供应商状态 1=上架 2=下架 SourceStatus uint // 供应商状态 1=上架 2=下架
CustomerPrice decimal.Decimal // 供货最高价 CustomerPrice decimal.Decimal // 供货最高价

@ -20,15 +20,25 @@ type SkuAuditSearch struct {
AdjustType uint // 加价类型 AdjustType uint // 加价类型
Status uint // 状态 1=未审核 2=通过 3=驳回 Status uint // 状态 1=未审核 2=通过 3=驳回
} }
type SkuAuditItem struct { type SkuAndAuditItem struct {
Id uint `json:"id"` AuditId uint `json:"auditId"`
SkuId uint `json:"skuId"` SkuId uint `json:"skuId"`
AfterAdjustType uint `json:"afterAdjustType"` AfterAdjustType uint `json:"afterAdjustType"`
AfterAdjustPrice decimal.Decimal `json:"afterAdjustPrice"` AfterAdjustPrice decimal.Decimal `json:"afterAdjustPrice"`
Name string `json:"name"`
SupplyPrice decimal.Decimal `json:"supplyPrice"`
GuidePrice decimal.Decimal `json:"guidePrice"`
AdjustType uint `json:"adjustType"`
AdjustPrice decimal.Decimal `json:"adjustPrice"`
CustomerPrice decimal.Decimal `json:"customerPrice"`
ThirdCategoryId uint `json:"thirdCategoryId"`
BrandName string `json:"brandName"`
SourceName string `json:"sourceName"`
} }
type ReplySkuAuditLists struct { type ReplySkuAuditLists struct {
Lists []SkuAuditItem `json:"lists"` Lists []SkuAndAuditItem `json:"lists"`
Total int64 `json:"total"` Total int64 `json:"total"`
} }
// Lists @Title 审核列表 // Lists @Title 审核列表

Loading…
Cancel
Save