From b16eec9b38aedda5f5e7e60f749f9b2dbba2a84e Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期一, 29 六月 2026 18:00:25 +0800
Subject: [PATCH] 特种设备管理

---
 src/main/resources/mapper/collaborativeApproval/NoticeMapper.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/resources/mapper/collaborativeApproval/NoticeMapper.xml b/src/main/resources/mapper/collaborativeApproval/NoticeMapper.xml
index 5f646ad..dcb620a 100644
--- a/src/main/resources/mapper/collaborativeApproval/NoticeMapper.xml
+++ b/src/main/resources/mapper/collaborativeApproval/NoticeMapper.xml
@@ -3,7 +3,7 @@
 <mapper namespace="com.ruoyi.collaborativeApproval.mapper.NoticeMapper">
 
     <select id="listPage" resultType="com.ruoyi.collaborativeApproval.dto.NoticeDTO">
-        select n.*, su.user_name as create_user_name
+        select n.*, su.nick_name as create_user_name
         from notice n
         left join sys_user su on n.create_user = su.user_id
         <where>
@@ -11,11 +11,11 @@
                 and n.title like concat('%',#{ew.title},'%')
             </if>
             <if test="ew.type != null">
-                and n.type = #{ew.type}
+                and n.type  = #{ew.type}
             </if>
             <if test="ew.status != null">
                 and n.status = #{ew.status}
             </if>
         </where>
     </select>
-</mapper>
\ No newline at end of file
+</mapper>

--
Gitblit v1.9.3