select person_id, place_id, name, religion_type, gender, id_number, birthday, county, address, political_status, edu_national, edu_religious, join_time, phone, domicile, native_place, org_name, org_address, status, create_by, create_time, update_by, update_time from religion_person
insert into religion_person
place_id,
name,
religion_type,
gender,
id_number,
birthday,
county,
address,
political_status,
edu_national,
edu_religious,
join_time,
phone,
domicile,
native_place,
org_name,
org_address,
status,
create_by,
create_time,
update_by,
update_time,
#{placeId},
#{name},
#{religionType},
#{gender},
#{idNumber},
#{birthday},
#{county},
#{address},
#{politicalStatus},
#{eduNational},
#{eduReligious},
#{joinTime},
#{phone},
#{domicile},
#{nativePlace},
#{orgName},
#{orgAddress},
#{status},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update religion_person
place_id = #{placeId},
name = #{name},
religion_type = #{religionType},
gender = #{gender},
id_number = #{idNumber},
birthday = #{birthday},
county = #{county},
address = #{address},
political_status = #{politicalStatus},
edu_national = #{eduNational},
edu_religious = #{eduReligious},
join_time = #{joinTime},
phone = #{phone},
domicile = #{domicile},
native_place = #{nativePlace},
org_name = #{orgName},
org_address = #{orgAddress},
status = #{status},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where person_id = #{personId}
delete from religion_person where person_id = #{personId}
delete from religion_person where person_id in
#{personId}