增加西游tap渠道

master
DESKTOP-C3M45P4\dengdan 2025-10-19 21:15:39 +08:00
parent 5658b29c0c
commit aac1b0c112
1 changed files with 20 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;
/**
* 西tap
*/
@RestController
public class QuickXyTapRechargeController {
private static final String callbackkey = "56978364442802045754701047557102";
private static final String md5key = "qz5ilm8mcmaebficoggblneoaljmwmem";
@RequestMapping(value = "/quickXyTapCallback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}