generated from root/miduo_server
增加新充值渠道
parent
aac1b0c112
commit
7d06ca6852
|
|
@ -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 QuickXyZfRechargeController {
|
||||
private static final String callbackkey = "43321024942338673610284917510124";
|
||||
private static final String md5key = "wegdjv3ili3ebfqwmzzcqzzbi6kkf2dm";
|
||||
|
||||
@RequestMapping(value = "/quickXyZfCallback")
|
||||
public String QuickCallback(HttpServletRequest request) throws Exception {
|
||||
return QuickRechargeController.process(request,callbackkey,md5key);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue