|
|
@ -131,18 +131,20 @@ type ReplyOrderLists struct {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type OrderItem struct {
|
|
|
|
type OrderItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
OrderSubSn string `json:"orderSubSn"`
|
|
|
|
ReceiverName string `json:"receiverName"`
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"`
|
|
|
|
ReceiverMobile string `json:"receiverMobile"`
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"`
|
|
|
|
OrderSubSn string `json:"orderSubSn"`
|
|
|
|
Status uint `json:"status"`
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"`
|
|
|
|
CancelStatus uint `json:"cancelStatus"`
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"`
|
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
|
Status uint `json:"status"`
|
|
|
|
PayTime int64 `json:"payTime"`
|
|
|
|
CancelStatus uint `json:"cancelStatus"`
|
|
|
|
FinishAt int64 `json:"finishAt"`
|
|
|
|
CreatedAt int64 `json:"createdAt"`
|
|
|
|
StockOutAt int64 `json:"stockOutAt"`
|
|
|
|
PayTime int64 `json:"payTime"`
|
|
|
|
CloseAt int64 `json:"closeAt"`
|
|
|
|
FinishAt int64 `json:"finishAt"`
|
|
|
|
Skus []OrderSkuItem `json:"skus"`
|
|
|
|
StockOutAt int64 `json:"stockOutAt"`
|
|
|
|
|
|
|
|
CloseAt int64 `json:"closeAt"`
|
|
|
|
|
|
|
|
Skus []OrderSkuItem `json:"skus"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type OrderSkuItem struct {
|
|
|
|
type OrderSkuItem struct {
|
|
|
|