标签内容修改
This commit is contained in:
+10
-9
@@ -24,15 +24,16 @@
|
||||
where is_tag_dict=1 and sys_dict_id=#{params.sys_dict_id}
|
||||
|
||||
<!--搜索条件:标签名称包含%,单独搜索-->
|
||||
<choose>
|
||||
<when test='params.name != null and params.name != "" and params.name.contains("%")'>
|
||||
and name like '%1%%' escape '1'
|
||||
</when>
|
||||
<otherwise>
|
||||
and name like concat('%',#{params.name},'%')
|
||||
</otherwise>
|
||||
</choose>
|
||||
|
||||
<if test="params.name != null and params.name != ''">
|
||||
<choose>
|
||||
<when test='params.name != null and params.name != "" and params.name.contains("%")'>
|
||||
and name like '%1%%' escape '1'
|
||||
</when>
|
||||
<otherwise>
|
||||
and name like concat('%',#{params.name},'%')
|
||||
</otherwise>
|
||||
</choose>
|
||||
</if>
|
||||
order by create_time desc
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
+10
-9
@@ -150,15 +150,16 @@
|
||||
</choose>-->
|
||||
|
||||
<!--搜索条件:标签名称包含%,单独搜索-->
|
||||
<choose>
|
||||
<when test='params.dictName != null and params.dictName != "" and params.dictName.contains("%")'>
|
||||
and dict_name like '%1%%' escape '1'
|
||||
</when>
|
||||
<otherwise>
|
||||
and dict_name like concat('%',#{params.dictName},'%')
|
||||
</otherwise>
|
||||
</choose>
|
||||
|
||||
<if test="params.dbFieldTxt != null and params.dbFieldTxt != ''">
|
||||
<choose>
|
||||
<when test='params.dictName != null and params.dictName != "" and params.dictName.contains("%")'>
|
||||
and dict_name like '%1%%' escape '1'
|
||||
</when>
|
||||
<otherwise>
|
||||
and dict_name like concat('%',#{params.dictName},'%')
|
||||
</otherwise>
|
||||
</choose>
|
||||
</if>
|
||||
|
||||
order by d.create_time desc
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user