添加物流信息

finance
杨赟 2 years ago
parent d162fbed61
commit 9aa0054efb

@ -161,6 +161,7 @@ type OrderItem struct {
CancelStatus uint `json:"cancelStatus"` CancelStatus uint `json:"cancelStatus"`
CreatedAt int64 `json:"createdAt"` CreatedAt int64 `json:"createdAt"`
Skus []OrderSku `json:"skus"` Skus []OrderSku `json:"skus"`
Packages []OrderPackage `json:"packages"`
} }
type OrderSku struct { type OrderSku struct {
@ -174,6 +175,11 @@ type OrderSku struct {
Quantity uint `json:"quantity"` Quantity uint `json:"quantity"`
} }
type OrderPackage struct {
LogisticsName string `json:"logisticsName"`
WaybillCode string `json:"waybillCode"`
}
type ReplyOrderList struct { type ReplyOrderList struct {
Lists []OrderItem `json:"lists"` Lists []OrderItem `json:"lists"`
Total int64 `json:"total"` Total int64 `json:"total"`

Loading…
Cancel
Save