generated from root/miduo_server
增加西游tap渠道
parent
5658b29c0c
commit
aac1b0c112
|
|
@ -0,0 +1,20 @@
|
||||||
|
package com.jmfy.controller;
|
||||||
|
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 西游tap
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class QuickXyTapRechargeController {
|
||||||
|
private static final String callbackkey = "56978364442802045754701047557102";
|
||||||
|
private static final String md5key = "qz5ilm8mcmaebficoggblneoaljmwmem";
|
||||||
|
|
||||||
|
@RequestMapping(value = "/quickXyTapCallback")
|
||||||
|
public String QuickCallback(HttpServletRequest request) throws Exception {
|
||||||
|
return QuickRechargeController.process(request,callbackkey,md5key);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue