增加太初行GM版专服9quick支付

master
DESKTOP-C3M45P4\dengdan 2024-12-10 10:51:42 +08:00
parent 89d5545a21
commit d38c88c2d6
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;
/**
* GM9
*/
@RestController
public class QuickTcxGm9RechargeController {
private static final String callbackkey = "22252287891769516029973183625617 ";
private static final String md5key = "uod9a5qs4xbgvirbn5vkpttedztif1r9";
@RequestMapping(value = "/quickTcxGm9Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}