select id, project_id, server_config, terminal_config, operate_system, vdi_version, process_person, process_phone, handle_person, handle_phone, hz_interface_person, hz_interface_phone, start_date, h3c_person, h3c_phone, plan_finish_time, real_finish_time, create_by, create_time from project_poc_info
insert into project_poc_info
project_id,
server_config,
terminal_config,
operate_system,
vdi_version,
process_person,
process_phone,
handle_person,
handle_phone,
hz_interface_person,
hz_interface_phone,
start_date,
h3c_person,
h3c_phone,
plan_finish_time,
real_finish_time,
create_by,
create_time,
#{projectId},
#{serverConfig},
#{terminalConfig},
#{operateSystem},
#{vdiVersion},
#{processPerson},
#{processPhone},
#{handlePerson},
#{handlePhone},
#{hzInterfacePerson},
#{hzInterfacePhone},
#{startDate},
#{h3cPerson},
#{h3cPhone},
#{planFinishTime},
#{realFinishTime},
#{createBy},
#{createTime},
update project_poc_info
project_id = #{projectId},
server_config = #{serverConfig},
terminal_config = #{terminalConfig},
operate_system = #{operateSystem},
vdi_version = #{vdiVersion},
process_person = #{processPerson},
process_phone = #{processPhone},
handle_person = #{handlePerson},
handle_phone = #{handlePhone},
hz_interface_person = #{hzInterfacePerson},
hz_interface_phone = #{hzInterfacePhone},
start_date = #{startDate},
h3c_person = #{h3cPerson},
h3c_phone = #{h3cPhone},
plan_finish_time = #{planFinishTime},
real_finish_time = #{realFinishTime},
create_by = #{createBy},
create_time = #{createTime},
where id = #{id}
update project_poc_info_detail
set test_progress = #{item.testProgress}
where id = #{item.id}
delete from project_poc_info where id = #{id}
delete from project_poc_info where id in
#{id}
delete from project_poc_info_detail where poc_id in
#{pocId}
delete from project_poc_info_detail where poc_id = #{pocId}
insert into project_poc_info_detail( id, poc_id, test_progress, create_by, create_time) values
( #{item.id}, #{item.pocId}, #{item.testProgress}, #{item.createBy}, #{item.createTime})