diff --git a/wholesale/channel/order.go b/wholesale/channel/order.go index 6728b73..3061fca 100644 --- a/wholesale/channel/order.go +++ b/wholesale/channel/order.go @@ -131,18 +131,20 @@ type ReplyOrderLists struct { } type OrderItem struct { - Id uint `json:"id"` - OrderSubSn string `json:"orderSubSn"` - FreightFee decimal.Decimal `json:"freightFee"` - OrderFee decimal.Decimal `json:"orderFee"` - Status uint `json:"status"` - CancelStatus uint `json:"cancelStatus"` - CreatedAt int64 `json:"createdAt"` - PayTime int64 `json:"payTime"` - FinishAt int64 `json:"finishAt"` - StockOutAt int64 `json:"stockOutAt"` - CloseAt int64 `json:"closeAt"` - Skus []OrderSkuItem `json:"skus"` + Id uint `json:"id"` + ReceiverName string `json:"receiverName"` + ReceiverMobile string `json:"receiverMobile"` + OrderSubSn string `json:"orderSubSn"` + FreightFee decimal.Decimal `json:"freightFee"` + OrderFee decimal.Decimal `json:"orderFee"` + Status uint `json:"status"` + CancelStatus uint `json:"cancelStatus"` + CreatedAt int64 `json:"createdAt"` + PayTime int64 `json:"payTime"` + FinishAt int64 `json:"finishAt"` + StockOutAt int64 `json:"stockOutAt"` + CloseAt int64 `json:"closeAt"` + Skus []OrderSkuItem `json:"skus"` } type OrderSkuItem struct {