id,task_id,task_allocator,
task_receiver,create_time,status
delete from t_task_log
where id = #{id,jdbcType=INTEGER}
insert into t_task_log
( id,task_id,task_allocator
,task_receiver,create_time,status
)
values (#{id,jdbcType=INTEGER},#{taskId,jdbcType=INTEGER},#{taskAllocator,jdbcType=VARCHAR}
,#{taskReceiver,jdbcType=VARCHAR},#{createTime,jdbcType=TIMESTAMP},#{status,jdbcType=INTEGER}
)
insert into t_task_log
id,
task_id,
task_allocator,
task_receiver,
create_time,
status,
#{id,jdbcType=INTEGER},
#{taskId,jdbcType=INTEGER},
#{taskAllocator,jdbcType=VARCHAR},
#{taskReceiver,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP},
#{status,jdbcType=INTEGER},
update t_task_log
task_id = #{taskId,jdbcType=INTEGER},
task_allocator = #{taskAllocator,jdbcType=VARCHAR},
task_receiver = #{taskReceiver,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
status = #{status,jdbcType=INTEGER},
where id = #{id,jdbcType=INTEGER}
update t_task_log
set
task_id = #{taskId,jdbcType=INTEGER},
task_allocator = #{taskAllocator,jdbcType=VARCHAR},
task_receiver = #{taskReceiver,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
status = #{status,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
update t_task_log set
task_receiver = #{transferId,jdbcType=VARCHAR}
where task_receiver = #{aid,jdbcType=VARCHAR}