feat(erp): 添加货运ID字段到会计模块

- 在会计结构体中新增 shipmentId 字段用于关联货运信息
- 该字段为 int64 类型,支持长整型货运ID存储
- 通过 JSON 标签实现序列化支持,便于接口传输
This commit is contained in:
2026-06-30 10:42:41 +08:00
parent bd60fd29e4
commit b52071cf3d

View File

@@ -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"`