|
|
|
@ -123,6 +123,9 @@ type SkuListsSearch struct {
|
|
|
|
|
AuditStatus uint // 审核状态
|
|
|
|
|
SourceStatus uint // 供应商下架状态
|
|
|
|
|
PlatformStatus uint // 平台下架状态
|
|
|
|
|
AdjustAuditStatus uint // 改价审核状态
|
|
|
|
|
AdjustAuditMinDiscount decimal.Decimal // 改价后最小折扣
|
|
|
|
|
AdjustAuditMaxDiscount decimal.Decimal // 改价后最大折扣
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ReplySkuList struct {
|
|
|
|
@ -153,6 +156,7 @@ type SkuItem struct {
|
|
|
|
|
AfterAdjustType uint `json:"afterAdjustType"` // 改价后加价类型
|
|
|
|
|
AfterAdjustPrice decimal.Decimal `json:"afterAdjustPrice"` // 改价后加价金额
|
|
|
|
|
AfterPrice decimal.Decimal `json:"afterPrice"` // 改价记录
|
|
|
|
|
AfterDiscount decimal.Decimal `json:"afterDiscount"` // 改价后折扣
|
|
|
|
|
Reason string // 改价驳回原因
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|