From 88c8668e296b82fdd5867d4483b9be2cdd2a2697 Mon Sep 17 00:00:00 2001 From: jiaosong <jiaosong6760@dingtalk.com> Date: 星期四, 21 九月 2023 11:01:54 +0800 Subject: [PATCH] #页面列表查询 --- server/service/src/main/resources/mappers/SystemRoleMapper.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/service/src/main/resources/mappers/SystemRoleMapper.xml b/server/service/src/main/resources/mappers/SystemRoleMapper.xml index 7c35d77..406267c 100644 --- a/server/service/src/main/resources/mappers/SystemRoleMapper.xml +++ b/server/service/src/main/resources/mappers/SystemRoleMapper.xml @@ -30,7 +30,7 @@ <if test="dto.name != null and dto.name != ''"> AND role.`NAME` LIKE CONCAT('%', #{dto.name}, '%') </if> - <if test="dto.type != null and dto.type != ''"> + <if test="dto.type != null"> AND role.type = #{dto.type} </if> </where> -- Gitblit v1.9.3