增加太初行quick支付2渠道

master
DESKTOP-C3M45P4\dengdan 2024-09-27 11:59:16 +08:00
parent f8703a5523
commit 0c5cd257fe
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;
/**
* 2
*/
@RestController
public class QuickTcxZb2RechargeController {
private static final String callbackkey = "42046603295849957471088750401985";
private static final String md5key = "8u1ox7ck5lxzhu5pvowxhkffn9lv3a1c";
@RequestMapping(value = "/quickTcxZb2Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}