id, tid, patent_name, `status`, create_time
delete from task_progress_log
where id = #{id,jdbcType=INTEGER}
insert into task_progress_log (id, tid, patent_name,
`status`, create_time)
values (#{id,jdbcType=INTEGER}, #{tid,jdbcType=INTEGER}, #{patentName,jdbcType=VARCHAR},
#{status,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP})
insert into task_progress_log
id,
tid,
patent_name,
`status`,
create_time,
#{id,jdbcType=INTEGER},
#{tid,jdbcType=INTEGER},
#{patentName,jdbcType=VARCHAR},
#{status,jdbcType=INTEGER},
#{createTime,jdbcType=TIMESTAMP},
update task_progress_log
tid = #{tid,jdbcType=INTEGER},
patent_name = #{patentName,jdbcType=VARCHAR},
`status` = #{status,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=TIMESTAMP},
where id = #{id,jdbcType=INTEGER}
update task_progress_log
set tid = #{tid,jdbcType=INTEGER},
patent_name = #{patentName,jdbcType=VARCHAR},
`status` = #{status,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}