爱趣,0.05折专服支付回调

master
grimm 2024-02-19 18:51:27 +08:00
parent a050a64f9b
commit 2ebf36b542
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
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 xqTenthCallback(HttpServletRequest request) throws Exception {
return YouGuRechargeController.callback(request, PAYKEY);
}
}