增加西游直播3和4支付

master
DESKTOP-C3M45P4\dengdan 2024-09-29 19:07:25 +08:00
parent 70862ce50b
commit 3e582cdd89
2 changed files with 40 additions and 0 deletions

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;
/**
* 西3
*/
@RestController
public class Quickxyzb03RechargeController {
private static final String callbackkey = "89545698571021708404890513988556";
private static final String md5key = "r4byj5qfqzj5668wxcnm8rwimu9fqhms";
@RequestMapping(value = "/xyzb03Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}

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;
/**
* 西4
*/
@RestController
public class Quickxyzb04RechargeController {
private static final String callbackkey = "03075007118665290647605464814814";
private static final String md5key = "g9dmadvhmku0u9wynmgsrdv3hlc7djyt";
@RequestMapping(value = "/xyzb04Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}