修改任务集成插件内容查询条件根据插件idlike,调整为=
This commit is contained in:
parent
af2959545a
commit
577e1fe9c0
|
@ -696,7 +696,7 @@
|
||||||
<if test="new_push_date != null and new_push_date !='' "> <![CDATA[ AND DATE_FORMAT(new_push_date , '%Y-%m-%d') = #{new_push_date} ]]> </if>
|
<if test="new_push_date != null and new_push_date !='' "> <![CDATA[ AND DATE_FORMAT(new_push_date , '%Y-%m-%d') = #{new_push_date} ]]> </if>
|
||||||
<if test="repair_pust != null and repair_pust !='' "> and repair_pust like concat('%',#{repair_pust},'%') </if>
|
<if test="repair_pust != null and repair_pust !='' "> and repair_pust like concat('%',#{repair_pust},'%') </if>
|
||||||
<if test="sence_id != null and sence_id !='' "> and sence_id like concat('%',#{sence_id},'%') </if>
|
<if test="sence_id != null and sence_id !='' "> and sence_id like concat('%',#{sence_id},'%') </if>
|
||||||
<if test="plugin_id != null and plugin_id !='' "> and plugin_id like concat(#{plugin_id},'%') </if>
|
<if test="plugin_id != null and plugin_id !='' "> and plugin_id = #{plugin_id} </if>
|
||||||
<if test="new_state != null and new_state !='' "> and new_state like concat(#{new_state},'%') </if>
|
<if test="new_state != null and new_state !='' "> and new_state like concat(#{new_state},'%') </if>
|
||||||
<if test="business_date != null and business_date !='' "> <![CDATA[ AND DATE_FORMAT(business_date , '%Y-%m-%d') = str_to_date(#{business_date},'%Y-%m-%d') ]]> </if>
|
<if test="business_date != null and business_date !='' "> <![CDATA[ AND DATE_FORMAT(business_date , '%Y-%m-%d') = str_to_date(#{business_date},'%Y-%m-%d') ]]> </if>
|
||||||
<if test="create_time != null and create_time !='' "> and create_time like concat('%',#{create_time},'%') </if>
|
<if test="create_time != null and create_time !='' "> and create_time like concat('%',#{create_time},'%') </if>
|
||||||
|
|
Loading…
Reference in New Issue