insert into algorithm_expand(id, algorithm_id, algorithm_name, description, algorithm_type, algorithm_version,
team, topic, status)
value (#{id}, #{algorithmId}, #{algorithmName}, #{description}, #{algorithmType}, #{algorithmVersion},
#{team}, #{topic}, #{status})
update algorithm_expand
set algorithm_name = #{algorithmName},
description = #{description},
algorithm_type = #{algorithmType},
algorithm_version = #{algorithmVersion},
team = #{team},
topic = #{topic},
status = #{status}
where algorithm_id = #{algorithmId}