修改字段类型

This commit is contained in:
守护自己的云 2025-02-25 10:55:49 +08:00
parent 2f3f994f73
commit 60b6ab252b
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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