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