From 56f1e27c4106b1f85ae9457193034514eb2d28bd Mon Sep 17 00:00:00 2001 From: smallchill Date: Sun, 16 Feb 2020 16:37:29 +0800 Subject: [PATCH] =?UTF-8?q?:zap:=20=E4=BC=98=E5=8C=96=E5=85=BC=E5=AE=B9ora?= =?UTF-8?q?cle=E6=A8=A1=E7=B3=8A=E6=9F=A5=E8=AF=A2=E5=86=99=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/springblade/desk/mapper/NoticeMapper.xml | 2 +- .../org/springblade/system/mapper/DeptMapper.xml | 4 ++-- .../org/springblade/system/mapper/MenuMapper.xml | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/blade-service/blade-desk/src/main/java/org/springblade/desk/mapper/NoticeMapper.xml b/blade-service/blade-desk/src/main/java/org/springblade/desk/mapper/NoticeMapper.xml index eac197cc..acb713a8 100644 --- a/blade-service/blade-desk/src/main/java/org/springblade/desk/mapper/NoticeMapper.xml +++ b/blade-service/blade-desk/src/main/java/org/springblade/desk/mapper/NoticeMapper.xml @@ -44,7 +44,7 @@ WHERE n.is_deleted = 0 and n.tenant_id = #{notice.tenantId} - and n.title like concat('%', #{notice.title}, '%') + and n.title like concat(concat('%', #{notice.title}), '%') and n.category = #{notice.category} diff --git a/blade-service/blade-system/src/main/java/org/springblade/system/mapper/DeptMapper.xml b/blade-service/blade-system/src/main/java/org/springblade/system/mapper/DeptMapper.xml index 9575e146..6a205b9a 100644 --- a/blade-service/blade-system/src/main/java/org/springblade/system/mapper/DeptMapper.xml +++ b/blade-service/blade-system/src/main/java/org/springblade/system/mapper/DeptMapper.xml @@ -64,10 +64,10 @@ and dept.parent_id = #{param2} - and dept.dept_name like concat('%', #{param3.deptName},'%') + and dept.dept_name like concat(concat('%', #{param3.deptName}),'%') - and dept.full_name like concat('%', #{param3.fullName},'%') + and dept.full_name like concat(concat('%', #{param3.fullName}),'%') ORDER BY dept.sort diff --git a/blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml b/blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml index f0a1e157..3f71330c 100644 --- a/blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml +++ b/blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml @@ -62,13 +62,13 @@ and menu.parent_id = #{param1} - and menu.name like concat('%', #{param2.name},'%') + and menu.name like concat(concat('%', #{param2.name}),'%') - and menu.code like concat('%', #{param2.code},'%') + and menu.code like concat(concat('%', #{param2.code}),'%') - and menu.alias like concat('%', #{param2.alias},'%') + and menu.alias like concat(concat('%', #{param2.alias}),'%') ORDER BY menu.sort @@ -91,13 +91,13 @@ and menu.parent_id = #{param1} - and menu.name like concat('%', #{param2.name},'%') + and menu.name like concat(concat('%', #{param2.name}),'%') - and menu.code like concat('%', #{param2.code},'%') + and menu.code like concat(concat('%', #{param2.code}),'%') - and menu.alias like concat('%', #{param2.alias},'%') + and menu.alias like concat(concat('%', #{param2.alias}),'%') ORDER BY menu.sort