feat(sale): 更新变更单产品结构
- 在 ChangeProduct 结构中添加 BeforeSaleCount 字段- 重命名 SaleCount 为 AfterSaleCount(在实际代码中未更改字段名,仅在注释中体现) - 更新结构体注释以反映新的字段变化
This commit is contained in:
parent
2141ec63cd
commit
d17d438407
@ -14,11 +14,12 @@ type ArgsChangeAllSearch struct {
|
|||||||
WorkflowId int64 // 审核id
|
WorkflowId int64 // 审核id
|
||||||
}
|
}
|
||||||
type ChangeProduct struct {
|
type ChangeProduct struct {
|
||||||
Id int64 `json:"id"`
|
Id int64 `json:"id"`
|
||||||
SaleProductID int64 `json:"saleProductID"`
|
SaleProductID int64 `json:"saleProductID"`
|
||||||
SaleCount int64 `json:"saleCount"`
|
BeforeSaleCount int64 `json:"beforeSaleCount"`
|
||||||
CreatedAt *time.Time `json:"createdAt"`
|
SaleCount int64 `json:"saleCount"`
|
||||||
UpdatedAt *time.Time `json:"updatedAt"`
|
CreatedAt *time.Time `json:"createdAt"`
|
||||||
|
UpdatedAt *time.Time `json:"updatedAt"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// All @TITLE 获取产品
|
// All @TITLE 获取产品
|
||||||
|
Loading…
x
Reference in New Issue
Block a user