|
|
@ -4,6 +4,7 @@ import (
|
|
|
|
"context"
|
|
|
|
"context"
|
|
|
|
"git.oa00.com/supply-chain/service/client"
|
|
|
|
"git.oa00.com/supply-chain/service/client"
|
|
|
|
"git.oa00.com/supply-chain/service/lib/bean"
|
|
|
|
"git.oa00.com/supply-chain/service/lib/bean"
|
|
|
|
|
|
|
|
"github.com/shopspring/decimal"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type skuAudit struct {
|
|
|
|
type skuAudit struct {
|
|
|
@ -20,7 +21,10 @@ type SkuAuditSearch struct {
|
|
|
|
Status uint // 状态 1=未审核 2=通过 3=驳回
|
|
|
|
Status uint // 状态 1=未审核 2=通过 3=驳回
|
|
|
|
}
|
|
|
|
}
|
|
|
|
type SkuAuditItem struct {
|
|
|
|
type SkuAuditItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
|
|
|
|
SkuId uint `json:"skuId"`
|
|
|
|
|
|
|
|
AfterAdjustType uint `json:"afterAdjustType"`
|
|
|
|
|
|
|
|
AfterAdjustPrice decimal.Decimal `json:"afterAdjustPrice"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
type ReplySkuAuditLists struct {
|
|
|
|
type ReplySkuAuditLists struct {
|
|
|
|
Lists []SkuAuditItem `json:"lists"`
|
|
|
|
Lists []SkuAuditItem `json:"lists"`
|
|
|
|