修改回调
This commit is contained in:
parent
921c40606b
commit
39162a1750
|
@ -43,9 +43,9 @@ type OrderNotifySendContent struct {
|
||||||
OrderType int `json:"order_type"`
|
OrderType int `json:"order_type"`
|
||||||
Status int `json:"status"`
|
Status int `json:"status"`
|
||||||
Msg string `json:"msg"`
|
Msg string `json:"msg"`
|
||||||
//ErrCode int `json:"err_code"`
|
ErrCode int `json:"err_code"`
|
||||||
AppId int64 `json:"app_id"`
|
AppId int64 `json:"app_id"`
|
||||||
ChannelId int64 `json:"channel_id"`
|
ChannelId int64 `json:"channel_id"`
|
||||||
//MerchantId int64 `json:"merchant_id"`
|
//MerchantId int64 `json:"merchant_id"`
|
||||||
Amount int `json:"amount"`
|
Amount int `json:"amount"`
|
||||||
PayerTotal int `json:"payer_total"`
|
PayerTotal int `json:"payer_total"`
|
||||||
|
@ -160,9 +160,9 @@ func (o *OrderNotify) setBody() *OrderNotifySendContent {
|
||||||
Status: o.order.Status,
|
Status: o.order.Status,
|
||||||
OrderType: o.order.OrderType,
|
OrderType: o.order.OrderType,
|
||||||
Msg: o.Msg,
|
Msg: o.Msg,
|
||||||
//ErrCode: o.Status,
|
ErrCode: o.Code,
|
||||||
AppId: o.order.AppId,
|
AppId: o.order.AppId,
|
||||||
ChannelId: o.order.PayChannelId,
|
ChannelId: o.order.PayChannelId,
|
||||||
//MerchantId: o.order.MerchantId,
|
//MerchantId: o.order.MerchantId,
|
||||||
Amount: o.order.Amount,
|
Amount: o.order.Amount,
|
||||||
PayerTotal: o.order.PayerTotal,
|
PayerTotal: o.order.PayerTotal,
|
||||||
|
|
Loading…
Reference in New Issue