增加西游悠谷直播公会渠道

master
DESKTOP-C3M45P4\dengdan 2024-10-17 19:33:33 +08:00
parent 3e582cdd89
commit 3e9f651ca9
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package com.jmfy.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
/**
*
*/
@RestController
public class XiyouYouguZhiboRechargeController {
private static final String PAYKEY = "513b104df9d6e4b6702b79dad7ea2e60";
@RequestMapping(value = "/Web/xiyouYouguZhiboCallback")
public String youguCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, PAYKEY);
}
}