增加新充值渠道

master
DESKTOP-C3M45P4\dengdan 2025-11-12 18:35:56 +08:00
parent aac1b0c112
commit 7d06ca6852
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;
/**
* 西tap
*/
@RestController
public class QuickXyZfRechargeController {
private static final String callbackkey = "43321024942338673610284917510124";
private static final String md5key = "wegdjv3ili3ebfqwmzzcqzzbi6kkf2dm";
@RequestMapping(value = "/quickXyZfCallback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}