From 9aa0054efbc893707f3ced3360683c9571ebc255 Mon Sep 17 00:00:00 2001 From: kanade Date: Sun, 18 Sep 2022 17:28:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=89=A9=E6=B5=81=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- supply/channel/order.go | 6 ++++++ 1 file changed, 6 insertions(+) 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"`