select id, team_personnel_name, team_id, remark, create_by_id, create_by, create_time, update_by_id, update_by, update_time, del_flag, data_approval_status,
process_key, task_process_key, task_node_key from {DBNAME}.team_personnel_change_information
insert into {DBNAME}.team_personnel_change_information
team_personnel_name,
team_id,
remark,
create_by_id,
create_by,
create_time,
update_by_id,
update_by,
update_time,
del_flag,
data_approval_status,
process_key,
task_process_key,
task_node_key,
#{teamPersonnelName},
#{teamId},
#{remark},
#{createById},
#{createBy},
#{createTime},
#{updateById},
#{updateBy},
#{updateTime},
#{delFlag},
#{dataApprovalStatus},
#{processKey},
#{taskProcessKey},
#{taskNodeKey},
update {DBNAME}.team_personnel_change_information
team_personnel_name = #{teamPersonnelName},
team_id = #{teamId},
remark = #{remark},
create_by_id = #{createById},
create_by = #{createBy},
create_time = #{createTime},
update_by_id = #{updateById},
update_by = #{updateBy},
update_time = #{updateTime},
del_flag = #{delFlag},
data_approval_status = #{dataApprovalStatus},
process_key = #{processKey},
task_process_key = #{taskProcessKey},
task_node_key = #{taskNodeKey},
where id = #{id}
delete from {DBNAME}.team_personnel_change_information where id = #{id}
delete from {DBNAME}.team_personnel_change_information where id in
#{id}