From b52071cf3dbeefa9da54e3a8e3d05af1728eeac1 Mon Sep 17 00:00:00 2001 From: kanade Date: Tue, 30 Jun 2026 10:42:41 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E8=B4=A7?= =?UTF-8?q?=E8=BF=90ID=E5=AD=97=E6=AE=B5=E5=88=B0=E4=BC=9A=E8=AE=A1?= =?UTF-8?q?=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在会计结构体中新增 shipmentId 字段用于关联货运信息 - 该字段为 int64 类型,支持长整型货运ID存储 - 通过 JSON 标签实现序列化支持,便于接口传输 --- erp/accounting.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/accounting.go b/erp/accounting.go index 0157cfd..6fa3587 100644 --- a/erp/accounting.go +++ b/erp/accounting.go @@ -121,6 +121,7 @@ type ReplyAccountingInfo struct { CustomId int64 `json:"customId"` CustomShortName string `json:"customShortName"` CustomName string `json:"customName"` + ShipmentId int64 `json:"shipmentId"` InvoiceDate *time.Time `json:"invoiceDate"` InvoiceDateEnd *time.Time `json:"invoiceDateEnd"` InvoiceSerial string `json:"invoiceSerial"`