id, content, create_time, task_id, aid, stop_id
delete from task_log
where id = #{id,jdbcType=INTEGER}
insert into task_log (content, create_time, task_id,
aid, stop_id)
values (#{content,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{taskId,jdbcType=INTEGER},
#{aid,jdbcType=VARCHAR}, #{stopId,jdbcType=INTEGER})
insert into task_log
content,
create_time,
task_id,
aid,
stop_id,
#{content,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP},
#{taskId,jdbcType=INTEGER},
#{aid,jdbcType=VARCHAR},
#{stopId,jdbcType=INTEGER},
update task_log
content = #{content,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
task_id = #{taskId,jdbcType=INTEGER},
aid = #{aid,jdbcType=VARCHAR},
stop_id = #{stopId,jdbcType=INTEGER},
where id = #{id,jdbcType=INTEGER}
update task_log
set content = #{content,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
task_id = #{taskId,jdbcType=INTEGER},
aid = #{aid,jdbcType=VARCHAR},
stop_id = #{stopId,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}