修改集成任务日志查询条件
This commit is contained in:
parent
b378f3f9ba
commit
74f5d0c1bb
|
@ -671,8 +671,8 @@ update integration_task_living_details set sts= 'N' ,modify_time = #{modify_tim
|
|||
<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="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="new_state != null and new_state !='' "> and new_state like concat(#{new_state},'%') </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 = #{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="create_time != null and create_time !='' "> and create_time like concat('%',#{create_time},'%') </if>
|
||||
<if test="create_user_id != null and create_user_id !='' "> and create_user_id like concat('%',#{create_user_id},'%') </if>
|
||||
|
|
Loading…
Reference in New Issue