feat(erp): 添加模具数量字段到销售产品项

- 在 SaleProductItem 结构体中新增 MoldCount 字段
- 为 MoldCount 字段添加 JSON 标签映射
- 更新相关序列化逻辑以支持新字段
This commit is contained in:
守护自己的云 2025-10-28 13:53:52 +08:00
parent a4b2db03de
commit 308f6e93fe

View File

@ -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"`