|
|
|
@ -23,24 +23,27 @@ type SkuAuditSearch struct {
|
|
|
|
|
Status uint // 状态 1=未审核 2=通过 3=驳回
|
|
|
|
|
}
|
|
|
|
|
type SkuAndAuditItem struct {
|
|
|
|
|
AuditId uint `json:"auditId"`
|
|
|
|
|
SkuId uint `json:"skuId"`
|
|
|
|
|
AfterAdjustType uint `json:"afterAdjustType"`
|
|
|
|
|
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"`
|
|
|
|
|
Category string `json:"category"`
|
|
|
|
|
BrandName string `json:"brandName"`
|
|
|
|
|
SourceName string `json:"sourceName"`
|
|
|
|
|
AuditUserId uint `json:"auditUserId"`
|
|
|
|
|
AuditAt sql.NullTime `json:"auditAt"`
|
|
|
|
|
ImgUrl string `json:"imgUrl"`
|
|
|
|
|
Reason string `json:"reason"`
|
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
|
AuditId uint `json:"auditId"`
|
|
|
|
|
SkuId uint `json:"skuId"`
|
|
|
|
|
AfterAdjustType uint `json:"afterAdjustType"`
|
|
|
|
|
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"`
|
|
|
|
|
Category string `json:"category"`
|
|
|
|
|
BrandName string `json:"brandName"`
|
|
|
|
|
SourceName string `json:"sourceName"`
|
|
|
|
|
AuditUserId uint `json:"auditUserId"`
|
|
|
|
|
AuditAt sql.NullTime `json:"auditAt"`
|
|
|
|
|
ImgUrl string `json:"imgUrl"`
|
|
|
|
|
Reason string `json:"reason"`
|
|
|
|
|
FirstCategoryName string `json:"firstCategoryName"`
|
|
|
|
|
SecondCategoryName string `json:"secondCategoryName"`
|
|
|
|
|
ThirdCategoryName string `json:"thirdCategoryName"`
|
|
|
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ReplySkuAuditLists struct {
|
|
|
|
|