feat(erp): 添加应收产品项中的PI序列号字段
- 在ReceivableProductItem结构体中新增PiSerial字段 - 该字段用于存储PI序列信息并支持JSON序列化
This commit is contained in:
@@ -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"`
|
||||||
|
|||||||
Reference in New Issue
Block a user