增加西游返利渠道

master
DESKTOP-C3M45P4\dengdan 2024-11-22 18:26:31 +08:00
parent df51fdceb6
commit 195a69db22
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;
/**
* 西1
*/
@RestController
public class QuickXyFanli01RechargeController {
private static final String callbackkey = "43916418632129783417430664380475";
private static final String md5key = "lecr7mkl7zrpxefv5qhxki9pbtffvzlh";
@RequestMapping(value = "/xyFanli01Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}