1
zj
2026-01-09 4f8ab7cb6d60642e2b80a26377e37ef63a31f7d3
src/main/java/com/nq/controller/protol/UserPayController.java
@@ -50,11 +50,9 @@
    @RequestMapping({"flyPay.do"})
    @ResponseBody
    public ServerResponse flyPay(@RequestParam("payType") String payType,
                                 @RequestParam("payAmt") String payAmt,
                                 @RequestParam("currency") String currency, HttpServletRequest request) {
        log.info("发起 fly 线上支付 payType = {} payAmt = {} currency = {}", new Object[]{payType, payAmt, currency});
        return this.iPayService.flyPay(payType, payAmt, currency, request);
    public ServerResponse flyPay(@RequestParam("payAmt") String payAmt,
                                 HttpServletRequest request) {
        return this.iPayService.flyPay(payAmt,request);
    }