diff --git a/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml
index 984f89ccc..42ff5bc14 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml
@@ -52,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from sys_dept d
left join sys_role_dept rd on d.dept_id = rd.dept_id
where rd.role_id = #{roleId}
+ and d.del_flag = '0'
and d.dept_id not in (select d.parent_id from sys_dept d inner join sys_role_dept rd on d.dept_id = rd.dept_id and rd.role_id = #{roleId})
@@ -60,7 +61,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- where r.role_id = #{roleId}
+ where r.role_id = #{roleId} and r.del_flag = '0'
@@ -85,12 +85,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- where r.role_name=#{roleName} limit 1
+ where r.role_name=#{roleName} and r.del_flag = '0' limit 1
- where r.role_key=#{roleKey} limit 1
+ where r.role_key=#{roleKey} and r.del_flag = '0' limit 1
@@ -135,18 +135,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
update_by = #{updateBy},
update_time = sysdate()
- where role_id = #{roleId}
+ where role_id = #{roleId} and del_flag = '0'
- update sys_role set del_flag = '2' where role_id = #{roleId}
+ update sys_role set del_flag = '2' where role_id = #{roleId} and del_flag = '0'
update sys_role set del_flag = '2' where role_id in
#{roleId}
-
+
+ and del_flag = '0'
\ No newline at end of file
diff --git a/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
index 16a64c2a3..a4972e031 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -122,24 +122,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- where u.user_name = #{userName}
+ where u.user_name = #{userName} and u.del_flag ='0'
- where u.user_id = #{userId}
+ where u.user_id = #{userId} and u.del_flag ='0'
- select count(1) from sys_user where user_name = #{userName} limit 1
+ select count(1) from sys_user where user_name = #{userName} and del_flag ='0' limit 1
- select user_id, phonenumber from sys_user where phonenumber = #{phonenumber} limit 1
+ select user_id, phonenumber from sys_user where phonenumber = #{phonenumber} and del_flag ='0' limit 1
- select user_id, email from sys_user where email = #{email} limit 1
+ select user_id, email from sys_user where email = #{email} and del_flag ='0' limit 1
@@ -193,6 +193,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
update_time = sysdate()
where user_id = #{userId}
+ and del_flag ='0'
@@ -208,14 +209,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- update sys_user set del_flag = '2' where user_id = #{userId}
+ update sys_user set del_flag = '2' where user_id = #{userId} and del_flag ='0'
update sys_user set del_flag = '2' where user_id in
#{userId}
-
+
+ and del_flag ='0'
\ No newline at end of file