generated from root/miduo_server
小七0.05支付回调
parent
7b97a59ae5
commit
fb5998ea00
|
@ -14,7 +14,7 @@ public class AiquRechargeController {
|
||||||
private static final String PAYKEY = "f20a1d923726d4c8737ee673ea16da74";
|
private static final String PAYKEY = "f20a1d923726d4c8737ee673ea16da74";
|
||||||
|
|
||||||
@RequestMapping(value = "/Web/aiquCallback")
|
@RequestMapping(value = "/Web/aiquCallback")
|
||||||
public String xqTenthCallback(HttpServletRequest request) throws Exception {
|
public String aiquTenthCallback(HttpServletRequest request) throws Exception {
|
||||||
return YouGuRechargeController.callback(request, PAYKEY);
|
return YouGuRechargeController.callback(request, PAYKEY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 爱趣,0.05折专服
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class XqfpRechargeController {
|
||||||
|
|
||||||
|
private static final String PAYKEY = "e37696432326a0a3bbcd13712f4b93f8";
|
||||||
|
|
||||||
|
@RequestMapping(value = "/Web/xqfpCallback")
|
||||||
|
public String xqfpTenthCallback(HttpServletRequest request) throws Exception {
|
||||||
|
return YouGuRechargeController.callback(request, PAYKEY);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue