|
|
@ -20,14 +20,24 @@ 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"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|