select ids,code, project_id, hole_id, type, record_person ,operate_person, test_type, create_time, is_deleted from js_hole_person
insert into js_hole_person
ids,
code,
project_id,
hole_id,
type,
record_person,
operate_person,
test_type,
create_time,
is_deleted,
#{ids},
#{code},
#{projectId},
#{holeId},
#{type},
#{recordPerson},
#{operatePerson},
#{testType},
#{createTime,jdbcType=TIMESTAMP},
#{isDeleted},
insert into js_hole_person
(ids,code, project_id, hole_id, type, record_person ,operate_person, test_type, create_time, is_deleted)
VALUES
(#{item.ids}, #{item.code}, #{item.projectId},#{item.holeId},#{item.type},#{item.recordPerson},#{item.operatePerson},#{item.testType},#{item.createTime},#{item.isDeleted})
update js_hole_person
code = #{code},
project_id = #{projectId},
hole_id = #{holeId},
type = #{type},
record_person = #{recordPerson},
operate_person = #{operatePerson},
test_type = #{testType},
create_time = #{createTime},
is_deleted = #{isDeleted},
where ids = #{ids}
delete from js_hole_person where ids = #{ids}
delete from js_hole_person where ids in
#{ids}