修改任务集成插件内容查询条件根据插件idlike,调整为=
This commit is contained in:
parent
61fea10764
commit
af2959545a
|
@ -85,7 +85,7 @@
|
||||||
<trim prefix="where" prefixOverrides="and">
|
<trim prefix="where" prefixOverrides="and">
|
||||||
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
|
<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="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="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="remark != null and remark != ''"> and remark like concat('%',#{remark},'%') </if>
|
||||||
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
||||||
|
|
Loading…
Reference in New Issue