feat(erp): 添加收货人字段到应收账款模型

- 在 Receivable 结构体中新增 consignee 字段用于存储收货人信息
- 该字段支持 JSON 序列化,便于数据传输和存储
This commit is contained in:
2026-05-26 16:09:20 +08:00
parent 88046e52f2
commit defd94dfb2

View File

@@ -74,6 +74,7 @@ type ReplyReceivableInfo struct {
DomesticShippingCost decimal.Decimal `json:"domesticShippingCost"`
ForeignShippingCost decimal.Decimal `json:"foreignShippingCost"`
ForeignCommission decimal.Decimal `json:"foreignCommission"`
Consignee string `json:"consignee"`
CreatedStaffID int64 `json:"createdStaffID"`
Ik3cloudStatus int64 `json:"ik3CloudStatus"`
Ik3cloudErrMsg string `json:"ik3CloudErrMsg"`