From d7fd24cda7b8b5124fca826fa4301cdb3acdb6b5 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 19 八月 2025 17:46:52 +0800
Subject: [PATCH] 代码提交

---
 ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
index 867caed..464b361 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -25,6 +25,8 @@
         <result property="idCard" column="id_card"/>
         <result property="createTime" column="create_time"/>
         <result property="updateBy" column="update_by"/>
+        <result property="deptCode" column="dept_code"/>
+        <result property="deptName" column="dept_name"/>
         <result property="title" column="title"/>
         <result property="birthday" column="birthday"/>
         <result property="jobPhone" column="job_phone"/>
@@ -68,6 +70,8 @@
                u.user_name,
                u.user_type,
                u.nick_name,
+               u.dept_code,
+               u.dept_name,
                u.title,
                u.his_user_id,
                u.job_phone,
@@ -110,6 +114,8 @@
         u.nick_name, u.user_name,
         u.email,u.id_card,
         u.avatar,
+        u.dept_name,
+        u.dept_code,
         u.birthday,
         u.job_phone,
         u.phonenumber, u.sex, u.status,
@@ -141,6 +147,12 @@
         <if test="birthday != null and birthday != ''">
             AND u.birthday = #{birthday}
         </if>
+        <if test="deptName != null and deptName != ''">
+            AND u.dept_name = #{deptName}
+        </if>
+        <if test="deptCode != null and deptCode != ''">
+            AND u.dept_code = #{deptCode}
+        </if>
         <if test="hisUserId != null and hisUserId != ''">
             AND u.his_user_id = #{hisUserId}
         </if>
@@ -167,6 +179,8 @@
         u.user_type,
         u.nick_name,
         u.email,
+        u.dept_code,
+        u.dept_name,
         u.birthday,
         u.job_phone,
         u.phonenumber, u.status,u.id_card,
@@ -199,6 +213,8 @@
         u.email,
         u.his_user_id,
         u.title,
+        u.dept_code,
+        u.dept_name,
         u.job_phone,
         u.birthday,
         u.phonenumber, u.status,u.id_card,
@@ -293,6 +309,8 @@
         <if test="birthday != null ">birthday,</if>
         <if test="hisUserId != null and hisUserId != ''">his_user_id,</if>
         <if test="orgid != null and orgid != ''">orgid,</if>
+        <if test="deptCode != null and deptCode != ''">dept_code,</if>
+        <if test="deptName != null and deptName != ''">dept_name,</if>
         create_time
         )values(
         <if test="userId != null and userId != ''">#{userId},</if>
@@ -317,6 +335,8 @@
         <if test="birthday != null and birthday != ''">#{birthday},</if>
         <if test="hisUserId != null and hisUserId != ''">#{hisUserId},</if>
         <if test="orgid != null and orgid != ''">#{orgid},</if>
+        <if test="deptCode != null and deptCode != ''">#{deptCode},</if>
+        <if test="deptName != null and deptName != ''">#{deptName},</if>
         sysdate()
         )
     </insert>
@@ -351,6 +371,8 @@
             <if test="hisUserId != null and hisUserId != ''">
                 his_user_id = #{hisUserId},
             </if>
+            <if test="deptCode != null and deptCode != ''">dept_code=#{deptCode},</if>
+            <if test="deptName != null and deptName != ''">dept_name=#{deptName},</if>
             update_time = sysdate()
         </set>
         where user_id = #{userId}

--
Gitblit v1.9.3