From 60b6ab252ba7cc87f831fb436c694c9f4f6e8dd0 Mon Sep 17 00:00:00 2001 From: kanade Date: Tue, 25 Feb 2025 10:55:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AD=97=E6=AE=B5=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp/shipment/customs.go | 2 +- erp/shipment/exchangeSettlement.go | 4 ++-- erp/shipment/serial.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/erp/shipment/customs.go b/erp/shipment/customs.go index 9950472..2138499 100644 --- a/erp/shipment/customs.go +++ b/erp/shipment/customs.go @@ -34,7 +34,7 @@ type CustomsItem struct { InvoiceSerial string `json:"invoiceSerial"` CustomsNo string `json:"customsNo"` ContractDate *time.Time `json:"contractDate"` - InvoiceDate time.Time `json:"invoiceDate"` + InvoiceDate *time.Time `json:"invoiceDate"` CustomName string `json:"customName"` CustomShortName string `json:"customShortName"` EstSailingDate *time.Time `json:"estSailingDate"` diff --git a/erp/shipment/exchangeSettlement.go b/erp/shipment/exchangeSettlement.go index f102072..56bd7bf 100644 --- a/erp/shipment/exchangeSettlement.go +++ b/erp/shipment/exchangeSettlement.go @@ -33,7 +33,7 @@ type ExchangeSettlementItem struct { InvoiceSerial string `json:"invoiceSerial"` ExchangeSettlementNo string `json:"exchangeSettlementNo"` ContractDate *time.Time `json:"contractDate"` - InvoiceDate time.Time `json:"invoiceDate"` + InvoiceDate *time.Time `json:"invoiceDate"` CustomName string `json:"customName"` CustomShortName string `json:"customShortName"` EstSailingDate *time.Time `json:"estSailingDate"` @@ -61,7 +61,7 @@ type ReplyExchangeSettlementInfo struct { ExchangeSettlementNo string `json:"exchangeSettlementNo"` ShipmentId int64 `json:"shipmentId"` EstSailingDate *time.Time `json:"estSailingDate"` - InvoiceDate time.Time `json:"invoiceDate"` + InvoiceDate *time.Time `json:"invoiceDate"` ReadyDate *time.Time `json:"readyDate"` ShipPort string `json:"shipPort"` DischargePort string `json:"dischargePort"` diff --git a/erp/shipment/serial.go b/erp/shipment/serial.go index 96f4db5..ac48a84 100644 --- a/erp/shipment/serial.go +++ b/erp/shipment/serial.go @@ -34,7 +34,7 @@ type SerialItem struct { InvoiceSerial string `json:"invoiceSerial"` SerialNo string `json:"serialNo"` ContractDate *time.Time `json:"contractDate"` - InvoiceDate time.Time `json:"invoiceDate"` + InvoiceDate *time.Time `json:"invoiceDate"` CustomName string `json:"customName"` CustomShortName string `json:"customShortName"` EstSailingDate *time.Time `json:"estSailingDate"`