From 1ef64ad6b5b9935f6eaa63c8c9aea402629d64dd Mon Sep 17 00:00:00 2001 From: sian Date: Wed, 21 Dec 2022 11:18:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wholesale/channel/order.go | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) 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 {