id,activity_id,team_code,team_name,city,leader_id,
leader_name,leader_phone,member_count,status,audit_remark,
audit_time,created_at,updated_at
select id, activity_id, team_code, team_name, city, leader_id, leader_name, leader_phone, member_count, status, audit_remark, audit_time, created_at, updated_at from acc_team
insert into acc_team
activity_id,
team_code,
team_name,
city,
leader_id,
leader_name,
leader_phone,
member_count,
status,
audit_remark,
audit_time,
created_at,
updated_at,
#{activityId},
#{teamCode},
#{teamName},
#{city},
#{leaderId},
#{leaderName},
#{leaderPhone},
#{memberCount},
#{status},
#{auditRemark},
#{auditTime},
#{createdAt},
#{updatedAt},
update acc_team
activity_id = #{activityId},
team_code = #{teamCode},
team_name = #{teamName},
city = #{city},
leader_id = #{leaderId},
leader_name = #{leaderName},
leader_phone = #{leaderPhone},
member_count = #{memberCount},
status = #{status},
audit_remark = #{auditRemark},
audit_time = #{auditTime},
created_at = #{createdAt},
updated_at = #{updatedAt},
where id = #{id}
delete from acc_team where id = #{id}
delete from acc_team where id in
#{id}