自在修仙 小七渠道

master
grimm 2024-06-24 10:54:56 +08:00
parent 5ffa447b2a
commit 13f29eb9f8
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;
/**
* bt1
*/
@RestController
public class ZzxxxqRechargeController {
private static final String PAYKEY = "e25d62e59a66e686d4192500148eaeb0";
@RequestMapping(value = "/Web/zzxxxqCallback")
public String zzxxTenthCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, PAYKEY);
}
}