修改任务集成插件内容查询条件根据插件idlike,调整为=

This commit is contained in:
476474485@qq.com 2025-01-13 10:32:27 +08:00
parent 61fea10764
commit af2959545a
1 changed files with 20 additions and 20 deletions

View File

@ -85,7 +85,7 @@
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
<if test="workshopName != null and workshopName != ''"> and workshop_name like concat('%',#{workshopName},'%') </if>
<if test="plugId != null and plugId != ''"> and plug_id like concat('%',#{plugId},'%') </if>
<if test="plugId != null and plugId != ''"> and plug_id = #{plugId} </if>
<if test="plugName != null and plugName != ''"> and plug_name like concat('%',#{plugName},'%') </if>
<if test="remark != null and remark != ''"> and remark like concat('%',#{remark},'%') </if>
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>