|
|
@ -123,9 +123,6 @@ type SkuListsSearch struct {
|
|
|
|
AuditStatus uint // 审核状态
|
|
|
|
AuditStatus uint // 审核状态
|
|
|
|
SourceStatus uint // 供应商下架状态
|
|
|
|
SourceStatus uint // 供应商下架状态
|
|
|
|
PlatformStatus uint // 平台下架状态
|
|
|
|
PlatformStatus uint // 平台下架状态
|
|
|
|
AdjustAuditStatus uint // 改价审核状态
|
|
|
|
|
|
|
|
AdjustAuditMinDiscount decimal.Decimal // 改价后最小折扣
|
|
|
|
|
|
|
|
AdjustAuditMaxDiscount decimal.Decimal // 改价后最大折扣
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ReplySkuList struct {
|
|
|
|
type ReplySkuList struct {
|
|
|
@ -155,8 +152,9 @@ type SkuItem struct {
|
|
|
|
AdjustPrice decimal.Decimal `json:"adjustPrice"` // 加价金额
|
|
|
|
AdjustPrice decimal.Decimal `json:"adjustPrice"` // 加价金额
|
|
|
|
AfterAdjustType uint `json:"afterAdjustType"` // 改价后加价类型
|
|
|
|
AfterAdjustType uint `json:"afterAdjustType"` // 改价后加价类型
|
|
|
|
AfterAdjustPrice decimal.Decimal `json:"afterAdjustPrice"` // 改价后加价金额
|
|
|
|
AfterAdjustPrice decimal.Decimal `json:"afterAdjustPrice"` // 改价后加价金额
|
|
|
|
AfterPrice decimal.Decimal `json:"afterPrice"` // 改价记录
|
|
|
|
AfterPrice decimal.Decimal `json:"afterPrice"` // 改价后金额
|
|
|
|
AfterDiscount decimal.Decimal `json:"afterDiscount"` // 改价后折扣
|
|
|
|
AfterDiscount decimal.Decimal `json:"afterDiscount"` // 改价后折扣
|
|
|
|
|
|
|
|
AdjustAuditStatus uint `json:"adjustAuditStatus"` // 改价审核状态
|
|
|
|
Reason string // 改价驳回原因
|
|
|
|
Reason string // 改价驳回原因
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -176,6 +174,7 @@ type SkuEsSearch struct {
|
|
|
|
SourceSkuId uint // 供应商SkuId
|
|
|
|
SourceSkuId uint // 供应商SkuId
|
|
|
|
SourceStatus uint // 供应商上下架状态 1=上架 2=下架
|
|
|
|
SourceStatus uint // 供应商上下架状态 1=上架 2=下架
|
|
|
|
PlatformStatus uint // 平台上下架状态 1=上架 2=下架
|
|
|
|
PlatformStatus uint // 平台上下架状态 1=上架 2=下架
|
|
|
|
|
|
|
|
AuditStatus uint // 改价审核状态 1=待审核 2=通过 3=驳回
|
|
|
|
SkuId uint // Sku编码
|
|
|
|
SkuId uint // Sku编码
|
|
|
|
SupplySkuId uint // 供应商Sku编码
|
|
|
|
SupplySkuId uint // 供应商Sku编码
|
|
|
|
SkuName string // 商品名称
|
|
|
|
SkuName string // 商品名称
|
|
|
|