From a77bf9fb4718d1b657f8ef8c6edfaffa1a53683f Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期五, 06 二月 2026 17:01:20 +0800
Subject: [PATCH] 处理数据查询慢的问题
---
ruoyi-system/src/main/resources/mapper/system/SysRoleMapper.xml | 18 ++++++++++++++----
1 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/ruoyi-system/src/main/resources/mapper/system/SysRoleMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysRoleMapper.xml
index 288be10..7f7e015 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysRoleMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysRoleMapper.xml
@@ -99,14 +99,24 @@
WHERE r.del_flag = '0' and u.user_name = #{userName}
</select>
- <select id="checkRoleNameUnique" parameterType="String" resultMap="SysRoleResult">
+ <select id="checkRoleNameUnique" parameterType="com.ruoyi.common.core.domain.entity.SysRole" resultMap="SysRoleResult">
<include refid="selectRoleVo"/>
- where r.role_name=#{roleName} and r.del_flag = '0' limit 1
+ where r.role_name=#{roleName}
+ and r.del_flag = '0'
+ <if test="orgid != null and orgid != ''">
+ and r.orgid = #{orgid}
+ </if>
+ limit 1
</select>
- <select id="checkRoleKeyUnique" parameterType="String" resultMap="SysRoleResult">
+ <select id="checkRoleKeyUnique" parameterType="com.ruoyi.common.core.domain.entity.SysRole" resultMap="SysRoleResult">
<include refid="selectRoleVo"/>
- where r.role_key=#{roleKey} and r.del_flag = '0' limit 1
+ where r.role_key=#{roleKey}
+ and r.del_flag = '0'
+ <if test="orgid != null and orgid != ''">
+ and r.orgid = #{orgid}
+ </if>
+ limit 1
</select>
<insert id="insertRole" parameterType="SysRole" useGeneratedKeys="true" keyProperty="roleId">
--
Gitblit v1.9.3