select id, project_investigate_id, investigate_person, investigate_person_id, dept_id, dept_name, remark, create_by, create_time, update_by, update_time from t_project_investigate_person
insert into t_project_investigate_person
id,
project_investigate_id,
investigate_person,
investigate_person_id,
dept_id,
dept_name,
remark,
create_by,
create_time,
update_by,
update_time,
#{id},
#{projectInvestigateId},
#{investigatePerson},
#{investigatePersonId},
#{deptId},
#{deptName},
#{remark},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update t_project_investigate_person
project_investigate_id = #{projectInvestigateId},
investigate_person = #{investigatePerson},
investigate_person_id = #{investigatePersonId},
dept_id = #{deptId},
dept_name = #{deptName},
remark = #{remark},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}
delete from t_project_investigate_person where id = #{id}
delete from t_project_investigate_person where id in
#{id}