Browse Source

优化兼容oracle模糊查询写法

test
smallchill 5 years ago
parent
commit
56f1e27c41
  1. 2
      blade-service/blade-desk/src/main/java/org/springblade/desk/mapper/NoticeMapper.xml
  2. 4
      blade-service/blade-system/src/main/java/org/springblade/system/mapper/DeptMapper.xml
  3. 12
      blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml

2
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}
<if test="notice.title!=null">
and n.title like concat('%', #{notice.title}, '%')
and n.title like concat(concat('%', #{notice.title}), '%')
</if>
<if test="notice.category!=null">
and n.category = #{notice.category}

4
blade-service/blade-system/src/main/java/org/springblade/system/mapper/DeptMapper.xml

@ -64,10 +64,10 @@
and dept.parent_id = #{param2}
</if>
<if test="param3.deptName!=null and param3.deptName!=''">
and dept.dept_name like concat('%', #{param3.deptName},'%')
and dept.dept_name like concat(concat('%', #{param3.deptName}),'%')
</if>
<if test="param3.fullName!=null and param3.fullName!=''">
and dept.full_name like concat('%', #{param3.fullName},'%')
and dept.full_name like concat(concat('%', #{param3.fullName}),'%')
</if>
ORDER BY dept.sort
</select>

12
blade-service/blade-system/src/main/java/org/springblade/system/mapper/MenuMapper.xml

@ -62,13 +62,13 @@
and menu.parent_id = #{param1}
</if>
<if test="param2.name!=null and param2.name!=''">
and menu.name like concat('%', #{param2.name},'%')
and menu.name like concat(concat('%', #{param2.name}),'%')
</if>
<if test="param2.code!=null and param2.code!=''">
and menu.code like concat('%', #{param2.code},'%')
and menu.code like concat(concat('%', #{param2.code}),'%')
</if>
<if test="param2.alias!=null and param2.alias!=''">
and menu.alias like concat('%', #{param2.alias},'%')
and menu.alias like concat(concat('%', #{param2.alias}),'%')
</if>
ORDER BY menu.sort
</select>
@ -91,13 +91,13 @@
and menu.parent_id = #{param1}
</if>
<if test="param2.name!=null and param2.name!=''">
and menu.name like concat('%', #{param2.name},'%')
and menu.name like concat(concat('%', #{param2.name}),'%')
</if>
<if test="param2.code!=null and param2.code!=''">
and menu.code like concat('%', #{param2.code},'%')
and menu.code like concat(concat('%', #{param2.code}),'%')
</if>
<if test="param2.alias!=null and param2.alias!=''">
and menu.alias like concat('%', #{param2.alias},'%')
and menu.alias like concat(concat('%', #{param2.alias}),'%')
</if>
ORDER BY menu.sort
</select>

Loading…
Cancel
Save