generated from root/miduo_server
增加西游直播3和4支付
parent
70862ce50b
commit
3e582cdd89
|
@ -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;
|
||||
|
||||
/**
|
||||
* 西游直播3
|
||||
*/
|
||||
@RestController
|
||||
public class Quickxyzb03RechargeController {
|
||||
private static final String callbackkey = "89545698571021708404890513988556";
|
||||
private static final String md5key = "r4byj5qfqzj5668wxcnm8rwimu9fqhms";
|
||||
|
||||
@RequestMapping(value = "/xyzb03Callback")
|
||||
public String QuickCallback(HttpServletRequest request) throws Exception {
|
||||
return QuickRechargeController.process(request,callbackkey,md5key);
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
|
||||
/**
|
||||
* 西游直播4
|
||||
*/
|
||||
@RestController
|
||||
public class Quickxyzb04RechargeController {
|
||||
private static final String callbackkey = "03075007118665290647605464814814";
|
||||
private static final String md5key = "g9dmadvhmku0u9wynmgsrdv3hlc7djyt";
|
||||
|
||||
@RequestMapping(value = "/xyzb04Callback")
|
||||
public String QuickCallback(HttpServletRequest request) throws Exception {
|
||||
return QuickRechargeController.process(request,callbackkey,md5key);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue