This commit is contained in:
wucongxing8150 2024-08-21 10:14:15 +08:00
parent 9a2b4fdbdb
commit 79948994ec

View File

@ -64,7 +64,7 @@ func (r *Pay) GetPayOrder(c *gin.Context) {
userId = orderSingle.UserId
orderNo = orderSingle.OrderNo
createdAt = orderSingle.CreatedAt
notifyUrl = config.C.Wechat.NotifyDomain + config.C.Wechat.SingleRefundNotifyUrl
notifyUrl = config.C.Wechat.NotifyDomain + config.C.Wechat.SinglePayNotifyUrl
// 获取单项数据
questionDao := dao.QuestionDao{}
@ -89,7 +89,7 @@ func (r *Pay) GetPayOrder(c *gin.Context) {
userId = orderMember.UserId
orderNo = orderMember.OrderNo
createdAt = orderMember.CreatedAt
notifyUrl = config.C.Wechat.NotifyDomain + config.C.Wechat.MemberRefundNotifyUrl
notifyUrl = config.C.Wechat.NotifyDomain + config.C.Wechat.MemberPayNotifyUrl
// 获取对应数据
systemMemberDao := dao.SystemMemberDao{}