This commit is contained in:
守护自己的云 2024-09-27 15:51:08 +08:00
parent 833c3ff196
commit 9502903793

View File

@ -216,10 +216,11 @@ func (s *shipment) Edit(ctx context.Context, args ArgsShipmentEdit) (err error)
} }
type ReplyCustoms struct { type ReplyCustoms struct {
CostAmount decimal.Decimal `json:"costAmount"` CostAmount decimal.Decimal `json:"costAmount"`
CustomsCostAmount decimal.Decimal `json:"customsCostAmount"` CustomsCostAmount decimal.Decimal `json:"customsCostAmount"`
SaleTotalAmount decimal.Decimal `json:"saleTotalAmount"` SaleTotalAmount decimal.Decimal `json:"saleTotalAmount"`
Products []CustomsProductItem `json:"products"` CustomsTotalAmount decimal.Decimal `json:"customsTotalAmount"`
Products []CustomsProductItem `json:"products"`
} }
type CustomsProductItem struct { type CustomsProductItem struct {