select id, team_name, 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,
team_code,team_type
from {DBNAME}.team_information
insert into {DBNAME}.team_information
team_name,
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,
team_code,
team_type
#{teamName},
#{remark},
#{createById},
#{createBy},
#{createTime},
#{updateById},
#{updateBy},
#{updateTime},
#{delFlag},
#{dataApprovalStatus},
#{processKey},
#{taskProcessKey},
#{taskNodeKey},
#{teamCode},
#{teamType}
update {DBNAME}.team_information
team_Name = #{teamName},
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},
team_code = #{teamCode},
team_type=#{teamType}
where id = #{id}
delete from {DBNAME}.team_information where id = #{id}
delete from {DBNAME}.team_information where id in
#{id}