From ef2c3b3e0dbd683dfd75b55eb538914eecd2b6fa Mon Sep 17 00:00:00 2001
From: ‘liusuyi’ <1951119284@qq.com>
Date: 星期六, 22 七月 2023 16:52:19 +0800
Subject: [PATCH] 修复接口文档bug
---
ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
index 91528e4..08396d0 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -120,7 +120,7 @@
<select id="selectAppUserList" parameterType="SysUser" resultMap="SysUserResult">
<include refid="selectUserVo"/>
where u.del_flag = '0'
- and r.role_name like '%app%'
+ and LOWER(r.role_name) like '%app%'
<if test="deptId != null and deptId != 0">
AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE cast(#{deptId} as
varchar) = any(string_to_array(ancestors,',')) ))
--
Gitblit v1.9.3