增加太初行直播8渠道

master
DESKTOP-C3M45P4\dengdan 2024-12-16 15:54:42 +08:00
parent 6a5395480b
commit 527e56a00b
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 QuickTcxZb8RechargeController {
private static final String callbackkey = "34624434293137705050474776385139";
private static final String md5key = "x2byswokskwnsio2nk3d3vvk9gbgo0aw";
@RequestMapping(value = "/quickTcxZb8Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}