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