导出字段

This commit is contained in:
守护自己的云 2024-10-24 16:13:05 +08:00
parent 337065d094
commit f953c17e79

View File

@ -11,15 +11,30 @@ type ReplyCustoms struct {
} }
type CustomsProductItem struct { type CustomsProductItem struct {
Index int `json:"index" label:"序号"` // 序号 Index int `json:"index" label:"序号"` // 序号
Serial string `json:"serial" label:"货号"` // 货号 Serial string `json:"serial" label:"货号"` // 货号
CustomsName string `json:"customsName" label:"客户货号"` // 客户货号 CustomsName string `json:"customsName" label:"客户货号"` // 客户货号
ShipmentCount int64 `json:"shipmentCount" label:"出运数量"` // 出运数量 ShipmentCount int64 `json:"shipmentCount" label:"出运数量"` // 出运数量
SalePrice decimal.Decimal `json:"salePrice" label:"销售单价"` // 销售单价 SalePrice decimal.Decimal `json:"salePrice" label:"销售单价"` // 销售单价
SaleAmount decimal.Decimal `json:"saleAmount" label:"销售金额"` // 销售金额 SaleAmount decimal.Decimal `json:"saleAmount" label:"销售金额"` // 销售金额
CustomsPrice decimal.Decimal `json:"customsPrice" label:"报关单价"` // 报关单价 CustomsPrice decimal.Decimal `json:"customsPrice" label:"报关单价"` // 报关单价
CustomsAmount decimal.Decimal `json:"customsAmount" label:"报关金额"` // 报关金额 CustomsAmount decimal.Decimal `json:"customsAmount" label:"报关金额"` // 报关金额
AdjustAmount decimal.Decimal `json:"adjustAmount" label:"调整金额"` // 调整金额 AdjustAmount decimal.Decimal `json:"adjustAmount" label:"调整金额"` // 调整金额
RealCustomsPrice decimal.Decimal `json:"realCustomsPrice" label:"真实报关单价"` // 真实报关单价 RealCustomsPrice decimal.Decimal `json:"realCustomsPrice" label:"真实报关单价"` // 真实报关单价
RealCustomsAmount decimal.Decimal `json:"realCustomsAmount" label:"真实报关金额"` // 真实报关金额 RealCustomsAmount decimal.Decimal `json:"realCustomsAmount" label:"真实报关金额"` // 真实报关金额
Name string `json:"name" label:"中文品名"` // 中文品名
EngName string `json:"engName" label:"英文品名"` // 英文品名
CustomsSerial string `json:"customsSerial" label:"海关编码"` // 海关编码
CustomsMeasureUnit string `json:"customsMeasureUnit" label:"报关单位"` // 报关单位
CustomsInvoiceUnit string `json:"customsInvoiceUnit" label:"开票单位"` // 开票单位
CustomsDetail string `json:"customsDetail" label:"申报要素"` // 申报要素
ShipmentCountUnit string `json:"shipmentCountUnit" label:"数量单位"` // 数量单位
OuterBoxCount int64 `json:"outerBoxCount" label:"箱数"` // 箱数
TotalVolume decimal.Decimal `json:"totalVolume" label:"总体积"` // 总体积
TotalGrossWeight decimal.Decimal `json:"totalGrossWeight" label:"总毛重"` // 总毛重
TotalNetWeight decimal.Decimal `json:"totalNetWeight" label:"总净重"` // 总净重
DomesticSupply string `json:"domesticSupply" label:"境内货源地"` // 境内货源地
ContainerNumber string `json:"containerNumber" label:"箱号"` // 箱号
SealNumber string `json:"sealNumber" label:"封号"` // 封号
Remark string `json:"remark" label:"备注"` // 备注
} }