feat(erp): 添加应收产品项中的PI序列号字段

- 在ReceivableProductItem结构体中新增PiSerial字段
- 该字段用于存储PI序列信息并支持JSON序列化
This commit is contained in:
2026-01-14 14:20:22 +08:00
parent 0342008f42
commit 88992cc8ba

View File

@@ -81,6 +81,7 @@ type ReplyReceivableInfo struct {
type ReceivableProductItem struct { type ReceivableProductItem struct {
Id int64 `json:"id"` Id int64 `json:"id"`
ShipmentProductId int64 `json:"shipmentProductId"` ShipmentProductId int64 `json:"shipmentProductId"`
PiSerial string `json:"piSerial"`
Name string `json:"name"` Name string `json:"name"`
Serial string `json:"serial"` Serial string `json:"serial"`
ReceivableCount int64 `json:"receivableCount"` ReceivableCount int64 `json:"receivableCount"`