From defd94dfb2e6ed6b66ed14ea7db14c8caa281aca Mon Sep 17 00:00:00 2001 From: kanade Date: Tue, 26 May 2026 16:09:20 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=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?=E8=B4=A6=E6=AC=BE=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 Receivable 结构体中新增 consignee 字段用于存储收货人信息 - 该字段支持 JSON 序列化,便于数据传输和存储 --- erp/receivable.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/receivable.go b/erp/receivable.go index bf1f50e..b287d7b 100644 --- a/erp/receivable.go +++ b/erp/receivable.go @@ -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"`