爱趣联盟妖晶渠道

master
grimm 2024-05-08 11:51:25 +08:00
parent b5fee0f2a8
commit 5437647f56
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;
/**
*
*/
@RestController
public class AqlmYjRechargeController {
private static final String PAYKEY = "4aefd9d80948da9984534423a5f1ef47";
@RequestMapping(value = "/Web/aqlmYjCallback")
public String aqlmYjCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, PAYKEY);
}
}