From 79948994ec3d871b6bc57452b90b17d500df6e68 Mon Sep 17 00:00:00 2001 From: wucongxing8150 <815046773@qq.com> Date: Wed, 21 Aug 2024 10:14:15 +0800 Subject: [PATCH] 111 --- api/controller/Pay.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/controller/Pay.go b/api/controller/Pay.go index d97bc9a..1edd5bc 100644 --- a/api/controller/Pay.go +++ b/api/controller/Pay.go @@ -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{}