From 3647aa5008055528f075ee73002542a1399575ae Mon Sep 17 00:00:00 2001 From: zouyu <2723363702@qq.com> Date: 星期三, 19 三月 2025 14:45:39 +0800 Subject: [PATCH] 单点登录调整 --- ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml | 3 +++ 1 files changed, 3 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 8757304..0b30ccc 100644 --- a/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml @@ -69,6 +69,9 @@ <if test="userName != null and userName != ''"> AND u.account like concat('%', #{userName}, '%') </if> + <if test="nickName != null and nickName != ''"> + AND u.name like concat('%', #{nickName}, '%') + </if> <if test="status != null and status != ''"> AND u.status = #{status} </if> -- Gitblit v1.9.3