generated from root/miduo_server
增加太初行quick支付2渠道
parent
f8703a5523
commit
0c5cd257fe
|
@ -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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 太初行直播2
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class QuickTcxZb2RechargeController {
|
||||||
|
private static final String callbackkey = "42046603295849957471088750401985";
|
||||||
|
private static final String md5key = "8u1ox7ck5lxzhu5pvowxhkffn9lv3a1c";
|
||||||
|
|
||||||
|
@RequestMapping(value = "/quickTcxZb2Callback")
|
||||||
|
public String QuickCallback(HttpServletRequest request) throws Exception {
|
||||||
|
return QuickRechargeController.process(request,callbackkey,md5key);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue