部署
This commit is contained in:
parent
d9a4d289dc
commit
833c3ff196
@ -82,6 +82,7 @@ type ShipmentAdd struct {
|
||||
RecBankNameEng string // 收汇银行名称英文
|
||||
RecBankCardNo string // 收汇银行卡号
|
||||
RecBankCardName string // 收汇银行户名
|
||||
RecBankAddress string // 收汇银行地址
|
||||
Shipper string // 托运人
|
||||
Consignee string // 收货人
|
||||
Notifier string // 通知人
|
||||
@ -157,6 +158,7 @@ type ArgsShipmentData struct {
|
||||
RecBankNameEng string // 收款银行名称英文
|
||||
RecBankCardNo string // 收款银行卡号
|
||||
RecBankCardName string // 收款银行卡名
|
||||
RecBankAddress string // 收汇银行地址
|
||||
PaymentTerms string // 付款条件
|
||||
TradeCountry string // 贸易国
|
||||
PaymentType string // 付款方式
|
||||
|
@ -29,6 +29,7 @@ type ReplyShipmentInfo struct {
|
||||
RecBankNameEng string `json:"recBankNameEng"`
|
||||
RecBankCardNo string `json:"recBankCardNo"`
|
||||
RecBankCardName string `json:"recBankCardName"`
|
||||
RecBankAddress string `json:"recBankAddress"`
|
||||
Shipper string `json:"shipper"`
|
||||
Consignee string `json:"consignee"`
|
||||
Notifier string `json:"notifier"`
|
||||
|
@ -79,6 +79,7 @@ type ReplyExchangeSettlementInfo struct {
|
||||
CustomsInvoiceDate *time.Time `json:"customsInvoiceDate"`
|
||||
VesselNameVoyage string `json:"vesselNameVoyage"`
|
||||
IsCancel int64 `json:"isCancel"`
|
||||
RecBankAddress string `json:"recBankAddress"`
|
||||
}
|
||||
|
||||
// Info @TITLE 详情
|
||||
@ -139,6 +140,7 @@ type ArgsExchangeSettlementData struct {
|
||||
RecBankNameEng string // 收款银行名称英文
|
||||
RecBankCardNo string // 收款银行卡号
|
||||
RecBankCardName string // 收款银行卡名
|
||||
RecBankAddress string // 收汇银行地址
|
||||
ShipmentNo string // shipmentNO
|
||||
CnoSno string // CONTAINER NO./SEAL NO.
|
||||
Declare1 string // 声明1
|
||||
|
@ -45,6 +45,12 @@ type SaleProductItem struct {
|
||||
TotalGrossWeight decimal.Decimal `json:"totalGrossWeight"`
|
||||
NetWeight decimal.Decimal `json:"netWeight"`
|
||||
TotalNetWeight decimal.Decimal `json:"totalNetWeight"`
|
||||
CustomsVolume decimal.Decimal `json:"customsVolume"`
|
||||
TotalCustomsVolume decimal.Decimal `json:"totalCustomsVolume"`
|
||||
CustomsNetWeight decimal.Decimal `json:"customsNetWeight"`
|
||||
TotalCustomsNetWeight decimal.Decimal `json:"totalCustomsNetWeight"`
|
||||
CustomsGrossWeight decimal.Decimal `json:"customsGrossWeight"`
|
||||
TotalCustomsGrossWeight decimal.Decimal `json:"totalCustomsGrossWeight"`
|
||||
SalePrice decimal.Decimal `json:"salePrice"`
|
||||
CurrencyRate decimal.Decimal `json:"currencyRate"`
|
||||
Brand string `json:"brand"`
|
||||
@ -113,6 +119,12 @@ type SaleProductAdd struct {
|
||||
NetWeight *decimal.Decimal // 净重
|
||||
GrossWeight *decimal.Decimal // 毛重
|
||||
NetGrossVolume int64 // 净毛体计算类型 1=内盒 2=外箱
|
||||
CustomsVolume decimal.Decimal // 报关体积
|
||||
TotalCustomsVolume decimal.Decimal // 报关总体积
|
||||
CustomsNetWeight decimal.Decimal // 报关净重
|
||||
TotalCustomsNetWeight decimal.Decimal // 报关总净重
|
||||
CustomsGrossWeight decimal.Decimal // 报关毛重
|
||||
TotalCustomsGrossWeight decimal.Decimal // 报关总毛重
|
||||
CustomsBrand string // 品牌
|
||||
DomesticSupply string // 货源地
|
||||
FactoryName string // 工厂名称
|
||||
@ -169,6 +181,12 @@ type SaleProductEdit struct {
|
||||
NetWeight *decimal.Decimal // 净重
|
||||
GrossWeight *decimal.Decimal // 毛重
|
||||
NetGrossVolume int64 // 净毛体计算类型 1=内盒 2=外箱
|
||||
CustomsVolume decimal.Decimal // 报关体积
|
||||
TotalCustomsVolume decimal.Decimal // 报关总体积
|
||||
CustomsNetWeight decimal.Decimal // 报关净重
|
||||
TotalCustomsNetWeight decimal.Decimal // 报关总净重
|
||||
CustomsGrossWeight decimal.Decimal // 报关毛重
|
||||
TotalCustomsGrossWeight decimal.Decimal // 报关总毛重
|
||||
CustomsBrand string // 品牌
|
||||
DomesticSupply string // 货源地
|
||||
FactoryName string // 工厂名称
|
||||
|
Loading…
Reference in New Issue
Block a user