自在修仙0.1

master
grimm 2024-08-27 15:13:34 +08:00
parent a26aa0c2cc
commit 164cc3c5b5
1 changed files with 17 additions and 5 deletions

View File

@ -6,22 +6,34 @@ import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
/**
* bt1
* 0.01
*/
@RestController
public class Zzxx01RechargeController {
private static final String PAYKEY = "38444756b58ff89b799291b3d8ed7ccf";
private static final String QD01_PAYKEY = "0a746c4e20fb6dc875f754957ddaf055";
private static final String QD101_PAYKEY = "0a746c4e20fb6dc875f754957ddaf055";
private static final String QD501_PAYKEY = "919066663c3544aaefd0b67ea979f11f";
private static final String QDB01_PAYKEY = "1b6de29c4a123c678c52a29a9fa77fc3";
@RequestMapping(value = "/Web/Zzxxxq01Callback")
public String zzxxxq01TenthCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, PAYKEY);
}
@RequestMapping(value = "/Web/Zzxxqd01Callback")
public String zzxxQD01TenthCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, QD01_PAYKEY);
@RequestMapping(value = "/Web/Zzxxqd101Callback")
public String Zzxxqd01Callback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, QD101_PAYKEY);
}
@RequestMapping(value = "/Web/Zzxxqd501Callback")
public String Zzxxqd501Callback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, QD501_PAYKEY);
}
@RequestMapping(value = "/Web/Zzxxqdb01Callback")
public String Zzxxqdb01Callback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, QDB01_PAYKEY);
}
}