From 88046e52f2eac944486a5c4d6316ef5ceb306a52 Mon Sep 17 00:00:00 2001 From: kanade Date: Tue, 26 May 2026 15:56:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(service):=20=E6=B7=BB=E5=8A=A0=E6=94=B6?= =?UTF-8?q?=E8=B4=A7=E4=BA=BA=E5=AD=97=E6=AE=B5=E5=88=B0=E5=BA=94=E6=94=B6?= =?UTF-8?q?=E6=AC=BE=E9=A1=B9=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在Receivable结构体中添加Consignee字符串字段 - 用于存储应收款项相关收货人信息 --- ik3cloud/receivable.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ik3cloud/receivable.go b/ik3cloud/receivable.go index d367103..577f1da 100644 --- a/ik3cloud/receivable.go +++ b/ik3cloud/receivable.go @@ -24,6 +24,7 @@ type ArgsReceivableSave struct { DomesticShippingCost decimal.Decimal // 国内运费 ForeignShippingCost decimal.Decimal // 国外运费 ForeignCommission decimal.Decimal // 出口佣金 + Consignee string // 收货人 } type ReceivableProductItem struct {