generated from root/miduo_server
21 lines
655 B
Java
21 lines
655 B
Java
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 QuickxyzbRechargeController {
|
|
private static final String callbackkey = "16014079193981945064734586538410";
|
|
private static final String md5key = "4c8tgrqplonazk2xqfydynio5ebvemxj";
|
|
|
|
@RequestMapping(value = "/xyzbCallback")
|
|
public String QuickCallback(HttpServletRequest request) throws Exception {
|
|
return QuickRechargeController.process(request,callbackkey,md5key);
|
|
}
|
|
}
|