From 39162a175052f1318a0053a50afee35be9e0baab Mon Sep 17 00:00:00 2001 From: wolter Date: Wed, 14 Aug 2024 16:40:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=9B=9E=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/thirdpay/thirdpay_notify/notify.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/services/thirdpay/thirdpay_notify/notify.go b/app/services/thirdpay/thirdpay_notify/notify.go index 74daab7..5842f49 100644 --- a/app/services/thirdpay/thirdpay_notify/notify.go +++ b/app/services/thirdpay/thirdpay_notify/notify.go @@ -43,9 +43,9 @@ type OrderNotifySendContent struct { OrderType int `json:"order_type"` Status int `json:"status"` Msg string `json:"msg"` - //ErrCode int `json:"err_code"` - AppId int64 `json:"app_id"` - ChannelId int64 `json:"channel_id"` + ErrCode int `json:"err_code"` + AppId int64 `json:"app_id"` + ChannelId int64 `json:"channel_id"` //MerchantId int64 `json:"merchant_id"` Amount int `json:"amount"` PayerTotal int `json:"payer_total"` @@ -160,9 +160,9 @@ func (o *OrderNotify) setBody() *OrderNotifySendContent { Status: o.order.Status, OrderType: o.order.OrderType, Msg: o.Msg, - //ErrCode: o.Status, - AppId: o.order.AppId, - ChannelId: o.order.PayChannelId, + ErrCode: o.Code, + AppId: o.order.AppId, + ChannelId: o.order.PayChannelId, //MerchantId: o.order.MerchantId, Amount: o.order.Amount, PayerTotal: o.order.PayerTotal,