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

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 QuickopaqRechargeController {
private static final String callbackkey = "97094074214508535928247644872022";
private static final String md5key = "mldfnyicac9c1iybfnqvc7ybzplquc7g";
@RequestMapping(value = "/onepieceaqCallback")
public String QuickCallback(HttpServletRequest request) throws Exception {
return QuickRechargeController.process(request,callbackkey,md5key);
}
}