select id, `type`, sub_type_id, `name`, start_time, completed_time, cost_second, create_by, create_time, update_by, update_time, remark from t_algorithm
insert into t_algorithm
`type`,
sub_type_id,
`name`,
start_time,
completed_time,
cost_second,
create_by,
create_time,
update_by,
update_time,
remark,
#{type},
#{subTypeId},
#{name},
#{startTime},
#{completedTime},
#{costSecond},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update t_algorithm
type = #{type},
sub_type_id = #{subTypeId},
`name` = #{name},
start_time = #{startTime},
completed_time = #{completedTime},
cost_second = #{costSecond},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where id = #{id}
delete from t_algorithm where id = #{id}
delete from t_algorithm where id in
#{id}