From ec7a10f0dbc936cdff54cd5d25be37d58b2e0855 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 20 Sep 2024 16:29:41 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp/shipment/gift.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/erp/shipment/gift.go b/erp/shipment/gift.go index 1f55199..c9c1829 100644 --- a/erp/shipment/gift.go +++ b/erp/shipment/gift.go @@ -20,6 +20,7 @@ type GiftItem struct { CustomsInvoiceUnit string `json:"customsInvoiceUnit"` CustomsDetail string `json:"customsDetail"` ShipmentCount int64 `json:"shipmentCount"` + ShipmentCountUnit string `json:"shipmentCountUnit"` OuterBoxCount int64 `json:"outerBoxCount"` TotalVolume decimal.Decimal `json:"totalVolume"` TotalGrossWeight decimal.Decimal `json:"totalGrossWeight"` @@ -27,6 +28,8 @@ type GiftItem struct { CustomsPrice decimal.Decimal `json:"customsPrice"` CustomsAmount decimal.Decimal `json:"customsAmount"` DomesticSupply string `json:"domesticSupply"` + ContainerNumber string `json:"containerNumber"` + SealNumber string `json:"sealNumber"` Remark string `json:"remark"` Sort int64 `json:"sort"` CreatedAt *time.Time `json:"createdAt"` @@ -56,6 +59,7 @@ type GiftAdd struct { CustomsInvoiceUnit string // 开票单位 CustomsDetail string // 申报要素 ShipmentCount int64 // 出运数量 + ShipmentCountUnit string // 数量单位 OuterBoxCount int64 // 箱数 TotalVolume decimal.Decimal // 体积 TotalGrossWeight decimal.Decimal // 毛重 @@ -63,6 +67,8 @@ type GiftAdd struct { CustomsPrice decimal.Decimal // 报关单价 CustomsAmount decimal.Decimal // 报关总价 DomesticSupply string // 境内货源地 + ContainerNumber string // 箱号 + SealNumber string // 封号 Remark string // 备注 Sort int64 // 排序 }