From d1e1d0098fdbbf092a98332d30eb720926cd1823 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期三, 30 四月 2025 15:14:50 +0800
Subject: [PATCH] 修改bug

---
 ManagementOKTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/general/TPubWithdrawalController.java |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/ManagementOKTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/general/TPubWithdrawalController.java b/ManagementOKTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/general/TPubWithdrawalController.java
index 37c7ed3..9886aae 100644
--- a/ManagementOKTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/general/TPubWithdrawalController.java
+++ b/ManagementOKTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/general/TPubWithdrawalController.java
@@ -3,25 +3,24 @@
 import com.baomidou.mybatisplus.plugins.Page;
 import com.stylefeng.guns.core.base.controller.BaseController;
 import com.stylefeng.guns.core.common.constant.factory.PageFactory;
+import com.stylefeng.guns.core.log.LogObjectHolder;
 import com.stylefeng.guns.core.shiro.ShiroKit;
 import com.stylefeng.guns.core.util.SinataUtil;
-import com.stylefeng.guns.modular.system.model.TComplaint;
+import com.stylefeng.guns.modular.system.model.TPubWithdrawal;
 import com.stylefeng.guns.modular.system.model.TSystemNotice;
 import com.stylefeng.guns.modular.system.model.TWithdrawal;
+import com.stylefeng.guns.modular.system.service.ITPubWithdrawalService;
 import com.stylefeng.guns.modular.system.service.ITSystemNoticeService;
 import com.stylefeng.guns.modular.system.service.ITWithdrawalService;
 import com.stylefeng.guns.modular.system.util.HttpRequestUtil;
 import com.stylefeng.guns.modular.system.util.PushURL;
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.ResponseBody;
 import org.springframework.ui.Model;
 import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.beans.factory.annotation.Autowired;
-import com.stylefeng.guns.core.log.LogObjectHolder;
+import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestParam;
-import com.stylefeng.guns.modular.system.model.TPubWithdrawal;
-import com.stylefeng.guns.modular.system.service.ITPubWithdrawalService;
+import org.springframework.web.bind.annotation.ResponseBody;
 
 import java.text.SimpleDateFormat;
 import java.util.Date;
@@ -38,7 +37,7 @@
 @RequestMapping("/tPubWithdrawal")
 public class TPubWithdrawalController extends BaseController {
 
-    private String PREFIX = "/system/tPubWithdrawal/";
+    private String PREFIX = "/system/tWithdrawal/";
 
     @Autowired
     private ITPubWithdrawalService tPubWithdrawalService;
@@ -46,13 +45,15 @@
 
     @Autowired
     private ITSystemNoticeService tSystemNoticeService;
+    @Autowired
+    private ITWithdrawalService withdrawalService;
 
     /**
      * 跳转到提现列表首页
      */
     @RequestMapping("")
     public String index() {
-        return PREFIX + "tPubWithdrawal.html";
+        return PREFIX + "tWithdrawal.html";
     }
 
     /**
@@ -68,8 +69,7 @@
         model.addAttribute("str",str);
         return "/system/tComplaint/lookDetail.html";
     }
-    @Autowired
-    private ITWithdrawalService withdrawalService;
+
     /**
      * 跳转到立即处理页面
      */

--
Gitblit v1.7.1