miduo_pay/src/main/java/com/jmfy/controller/Quickxyzb02RechargeControll...

21 lines
659 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 Quickxyzb02RechargeController {
private static final String callbackkey = "00132847310161854369915191365736";
private static final String md5key = "ju1wmsjkcksgqlmh7re4dpczwxcwfxcy";
@RequestMapping(value = "/xyzb02Callback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}