diff --git a/supply/channel/order.go b/supply/channel/order.go index b471055..87f073f 100644 --- a/supply/channel/order.go +++ b/supply/channel/order.go @@ -161,6 +161,7 @@ type OrderItem struct { CancelStatus uint `json:"cancelStatus"` CreatedAt int64 `json:"createdAt"` Skus []OrderSku `json:"skus"` + Packages []OrderPackage `json:"packages"` } type OrderSku struct { @@ -174,6 +175,11 @@ type OrderSku struct { Quantity uint `json:"quantity"` } +type OrderPackage struct { + LogisticsName string `json:"logisticsName"` + WaybillCode string `json:"waybillCode"` +} + type ReplyOrderList struct { Lists []OrderItem `json:"lists"` Total int64 `json:"total"`