feat(erp): 添加模具数量字段到销售产品项
- 在 SaleProductItem 结构体中新增 MoldCount 字段 - 更新 JSON 标签以支持新字段序列化 -保持与其他销售产品相关字段的一致性
This commit is contained in:
parent
35c29a154a
commit
a4b2db03de
@ -15,6 +15,7 @@ type saleProduct struct {
|
||||
type SaleProductItem struct {
|
||||
Id int64 `json:"id"`
|
||||
Mold int64 `json:"mold"`
|
||||
MoldCount int64 `json:"moldCount"`
|
||||
ParentSaleProductId int64 `json:"parentSaleProductId"`
|
||||
SaleProductId int64 `json:"saleProductId"`
|
||||
PiSerial string `json:"piSerial"`
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user