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

21 lines
577 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.jmfy.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
/**
* 爱趣0.05折专服
*/
@RestController
public class AiquRechargeController {
private static final String PAYKEY = "f20a1d923726d4c8737ee673ea16da74";
@RequestMapping(value = "/Web/aiquCallback")
public String aiquTenthCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, PAYKEY);
}
}