diff --git a/supply/channel/order.go b/supply/channel/order.go index 279a381..ea21030 100644 --- a/supply/channel/order.go +++ b/supply/channel/order.go @@ -166,6 +166,7 @@ type OrderItem struct { Status uint `json:"status"` CancelStatus uint `json:"cancelStatus"` CreatedAt int64 `json:"createdAt"` + CloseAt int64 `json:"closeAt"` Skus []OrderSku `json:"skus"` Packages []OrderPackage `json:"packages"` } diff --git a/supply/order.go b/supply/order.go index 03514d9..ed147da 100644 --- a/supply/order.go +++ b/supply/order.go @@ -127,6 +127,7 @@ type RetailOrderItem struct { SupplyOrderFee decimal.Decimal `json:"supplyOrderFee"` PayTime int64 `json:"payTime"` FinishAt int64 `json:"finishAt"` + CloseAt int64 `json:"closeAt"` } type ReplyRetailOrderLists struct {