select id, people_id, name, character_relationship, phone_number, unit_name from family_information
insert into family_information
id,people_id,name,character_relationship,phone_number,unit_name,#{id},#{peopleId},#{name},#{characterRelationship},#{phoneNumber},#{unitName},
update family_information
people_id = #{peopleId},name = #{name},character_relationship = #{characterRelationship},phone_number = #{phoneNumber},unit_name = #{unitName},
where id = #{id}
delete from family_information where id = #{id}
delete from family_information where id in
#{id}