公会8专服,tap渠道

master
grimm 2024-05-31 14:45:07 +08:00
parent 5ac6379e2b
commit 5cb9fb5e3e
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;
/**
* 8
*/
@RestController
public class GonghuiRechargeController {
private static final String PAYKEY = "736fdb8686f8189e9a01a5a83c4c8cb5";
@RequestMapping(value = "/Web/gonghui8Callback")
public String aqlmTenthCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, PAYKEY);
}
}