导出字段

This commit is contained in:
守护自己的云 2024-10-31 14:05:49 +08:00
parent 47ba35e54f
commit 1ccddcbd4a
2 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,7 @@ type CustomsProductItem struct {
TotalGrossWeight decimal.Decimal `json:"totalGrossWeight" label:"总毛重"` // 总毛重 TotalGrossWeight decimal.Decimal `json:"totalGrossWeight" label:"总毛重"` // 总毛重
TotalNetWeight decimal.Decimal `json:"totalNetWeight" label:"总净重"` // 总净重 TotalNetWeight decimal.Decimal `json:"totalNetWeight" label:"总净重"` // 总净重
DomesticSupply string `json:"domesticSupply" label:"境内货源地"` // 境内货源地 DomesticSupply string `json:"domesticSupply" label:"境内货源地"` // 境内货源地
TaxExemption string `json:"taxExemption" label:"征免"` // 征免
ContainerNumber string `json:"containerNumber" label:"箱号"` // 箱号 ContainerNumber string `json:"containerNumber" label:"箱号"` // 箱号
SealNumber string `json:"sealNumber" label:"封号"` // 封号 SealNumber string `json:"sealNumber" label:"封号"` // 封号
Remark string `json:"remark" label:"备注"` // 备注 Remark string `json:"remark" label:"备注"` // 备注

View File

@ -33,6 +33,7 @@ type GiftItem struct {
CustomsPrice decimal.Decimal `json:"customsPrice"` CustomsPrice decimal.Decimal `json:"customsPrice"`
CustomsAmount decimal.Decimal `json:"customsAmount"` CustomsAmount decimal.Decimal `json:"customsAmount"`
DomesticSupply string `json:"domesticSupply"` DomesticSupply string `json:"domesticSupply"`
TaxExemption string `json:"taxExemption"`
ContainerNumber string `json:"containerNumber"` ContainerNumber string `json:"containerNumber"`
SealNumber string `json:"sealNumber"` SealNumber string `json:"sealNumber"`
Remark string `json:"remark"` Remark string `json:"remark"`
@ -74,6 +75,7 @@ type GiftAdd struct {
CustomsPrice decimal.Decimal // 报关单价 CustomsPrice decimal.Decimal // 报关单价
CustomsAmount decimal.Decimal // 报关总价 CustomsAmount decimal.Decimal // 报关总价
DomesticSupply string // 境内货源地 DomesticSupply string // 境内货源地
TaxExemption string // 征免
ContainerNumber string // 箱号 ContainerNumber string // 箱号
SealNumber string // 封号 SealNumber string // 封号
Remark string // 备注 Remark string // 备注