feat(erp):产品服务增加PI序列号字段

- 在产品结构体中添加PiSerial字段
- 支持PI序列号的JSON序列化和反序列化- 保持与其他序列号字段一致的命名规范
This commit is contained in:
2025-11-05 11:37:24 +08:00
parent ba571fa0f1
commit b652db9992

View File

@@ -16,6 +16,7 @@ type ProductItem struct {
SaleProductId int64 `json:"saleProductId"`
Sort int64 `json:"sort"`
Serial string `json:"serial"`
PiSerial string `json:"piSerial"`
CustomSerial string `json:"customSerial"`
Name string `json:"name"`
CustomsSerial string `json:"customsSerial"`