小七0.05支付回调

master
grimm 2024-02-26 17:35:42 +08:00
parent 7b97a59ae5
commit fb5998ea00
2 changed files with 21 additions and 1 deletions

View File

@ -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);
} }
} }

View File

@ -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);
}
}