generated from root/miduo_server
增加西游悠谷直播公会渠道
parent
3e582cdd89
commit
3e9f651ca9
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue