id, task_sopt_id, `status`, reason, create_by, create_time
delete from task_sopt_log
where id = #{id,jdbcType=BIGINT}
insert into task_sopt_log (task_sopt_id, `status`, reason,
create_by, create_time)
values (#{taskSoptId,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, #{reason,jdbcType=VARCHAR},
#{createBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
insert into task_sopt_log
task_sopt_id,
`status`,
reason,
create_by,
create_time,
#{taskSoptId,jdbcType=INTEGER},
#{status,jdbcType=INTEGER},
#{reason,jdbcType=VARCHAR},
#{createBy,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP},
update task_sopt_log
task_sopt_id = #{taskSoptId,jdbcType=INTEGER},
`status` = #{status,jdbcType=INTEGER},
reason = #{reason,jdbcType=VARCHAR},
create_by = #{createBy,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
where id = #{id,jdbcType=BIGINT}
update task_sopt_log
set task_sopt_id = #{taskSoptId,jdbcType=INTEGER},
`status` = #{status,jdbcType=INTEGER},
reason = #{reason,jdbcType=VARCHAR},
create_by = #{createBy,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}