feat(shipment): 添加父级货运销售产品ID字段
- 在SaleProductItem结构体中新增ParentShipmentSaleProductId字段 - 用于关联父级货运销售产品关系 - 保持原有数据结构完整性 - 更新两个相关文件中的结构体定义
This commit is contained in:
@@ -17,6 +17,7 @@ type SaleProductItem struct {
|
||||
Mold int64 `json:"mold"`
|
||||
MoldCount int64 `json:"moldCount"`
|
||||
ParentSaleProductId int64 `json:"parentSaleProductId"`
|
||||
ParentShipmentSaleProductId int64 `json:"parentShipmentSaleProductId"`
|
||||
SaleProductId int64 `json:"saleProductId"`
|
||||
PiSerial string `json:"piSerial"`
|
||||
Sort int64 `json:"sort"`
|
||||
|
||||
@@ -17,6 +17,7 @@ type SaleProductItem struct {
|
||||
Mold int64 `json:"mold"`
|
||||
MoldCount int64 `json:"moldCount"`
|
||||
ParentSaleProductId int64 `json:"parentSaleProductId"`
|
||||
ParentShipmentSaleProductId int64 `json:"parentShipmentSaleProductId"`
|
||||
SaleProductId int64 `json:"saleProductId"`
|
||||
PiSerial string `json:"piSerial"`
|
||||
Sort int64 `json:"sort"`
|
||||
|
||||
Reference in New Issue
Block a user