From 30e592bd0975b41e0b4b4140c4b794c2e1e121de Mon Sep 17 00:00:00 2001
From: zyy <zyy@email.com>
Date: Mon, 09 Feb 2026 15:21:44 +0800
Subject: [PATCH] 平仓

---
 src/main/java/com/nq/controller/protol/UserPayController.java |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/main/java/com/nq/controller/protol/UserPayController.java b/src/main/java/com/nq/controller/protol/UserPayController.java
index c3b5986..5f6ce97 100644
--- a/src/main/java/com/nq/controller/protol/UserPayController.java
+++ b/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);
     }
 
 

--
Gitblit v1.9.3