From e180e3a496d6f29d3a3b34016400de9d997c6bd9 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 07 四月 2026 14:42:23 +0800
Subject: [PATCH] 省立同德满意度功能提交

---
 ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java |   14 ++++++++------
 1 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java b/ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java
index 9a82487..b94b50f 100644
--- a/ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java
+++ b/ruoyi-common/src/main/java/com/ruoyi/common/core/controller/BaseController.java
@@ -96,12 +96,13 @@
         rspData.setTotal(total);
         return rspData;
     }
-    protected Map<String,Object> getDataTable3(long total, List<?> list) {
-        Map<String,Object> rspData = new TreeMap<>();
-        rspData.put("code",HttpStatus.SUCCESS);
-        rspData.put("msg","鏌ヨ鎴愬姛");
-        rspData.put("rows",list);
-        rspData.put("total",total);
+
+    protected Map<String, Object> getDataTable3(long total, Object object) {
+        Map<String, Object> rspData = new TreeMap<>();
+        rspData.put("code", HttpStatus.SUCCESS);
+        rspData.put("msg", "鏌ヨ鎴愬姛");
+        rspData.put("rows", object);
+        rspData.put("total", total);
         return rspData;
     }
 
@@ -201,6 +202,7 @@
     public String getUsername() {
         return getLoginUser().getUsername();
     }
+
     /**
      * 鑾峰彇鏈烘瀯ID
      */

--
Gitblit v1.9.3