新增西游冲破难关充值类

master
DESKTOP-C3M45P4\dengdan 2025-12-25 18:07:19 +08:00
parent 6900e25131
commit 4c60d0e3bb
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package com.jmfy.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.servlet.http.HttpServletRequest;
/**
* 西
*/
public class QuickXyChongPoRechargeController {
private static final String callbackkey = "48439581827229705952773755180104";
private static final String md5key = "3roz0d6svr8drviouogcx2o7xzybl06p";
@RequestMapping(value = "/quickXyCpCallback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}