yuleduiPay/controller/ysePay.go

18 lines
342 B
Go
Raw Permalink Normal View History

2024-11-05 17:34:58 +08:00
package controller
import (
"yuleduiPay/service"
"github.com/gogf/gf/v2/net/ghttp"
)
// 银盛路由控制类
type YsePay struct {
ysePayService service.YsePay //服务类
}
// 银盛异步通知余乐兑支付结果接口
func (t *YsePay) RouterGroup(group *ghttp.RouterGroup) {
2024-11-08 15:19:11 +08:00
group.POST("/notifyPay", t.ysePayService.NotifyPay)
2024-11-05 17:34:58 +08:00
}