|
|
|
@ -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"`
|
|
|
|
|