generated from root/miduo_server
18 lines
637 B
Java
18 lines
637 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 QuickopyyRechargeController {
|
|
private static final String callbackkey = "55965435800834173985704179451767";
|
|
private static final String md5key = "hhmn9fmyfqq2p0obxcjjgdpt8i3k0k4i";
|
|
|
|
@RequestMapping(value = "/onepieceyyCallback")
|
|
public String QuickCallback(HttpServletRequest request) throws Exception {
|
|
return QuickRechargeController.process(request,callbackkey,md5key);
|
|
}
|
|
}
|