feat(service): 添加收货人字段到应收款项结构

- 在Receivable结构体中添加Consignee字符串字段
- 用于存储应收款项相关收货人信息
This commit is contained in:
2026-05-26 15:56:04 +08:00
parent f7be98192c
commit 88046e52f2

View File

@@ -24,6 +24,7 @@ type ArgsReceivableSave struct {
DomesticShippingCost decimal.Decimal // 国内运费
ForeignShippingCost decimal.Decimal // 国外运费
ForeignCommission decimal.Decimal // 出口佣金
Consignee string // 收货人
}
type ReceivableProductItem struct {