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

- 在 SaleProductItem 结构体中新增 MoldCount 字段
- 更新 JSON 标签以支持新字段序列化
-保持与其他销售产品相关字段的一致性
This commit is contained in:
守护自己的云 2025-10-28 13:22:46 +08:00
parent 35c29a154a
commit a4b2db03de

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