标签内容修改

This commit is contained in:
xiejunyu
2022-03-21 10:05:17 +08:00
parent ab9cd1fd20
commit 8fc7f58259
2 changed files with 20 additions and 18 deletions
@@ -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>
@@ -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>