2024-02-19 18:51:27 +08:00
|
|
|
|
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")
|
2024-02-26 17:35:42 +08:00
|
|
|
|
public String aiquTenthCallback(HttpServletRequest request) throws Exception {
|
2024-02-19 18:51:27 +08:00
|
|
|
|
return YouGuRechargeController.callback(request, PAYKEY);
|
|
|
|
|
}
|
|
|
|
|
}
|