西游直播02

master
grimm 2024-07-30 18:00:12 +08:00
parent e0e0f3afd5
commit c165d765cd
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;
/**
* 西
*/
@RestController
public class Quickxyzb02RechargeController {
private static final String callbackkey = "00132847310161854369915191365736";
private static final String md5key = "ju1wmsjkcksgqlmh7re4dpczwxcwfxcy";
@RequestMapping(value = "/xyzb02Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}