select id, user_id, user_name, telphone, create_time, update_time from purchase_notice_person
insert into purchase_notice_person
user_id,user_name,telphone,create_time,update_time,#{userId},#{userName},#{telphone},#{createTime},#{updateTime},
update purchase_notice_person
user_id = #{userId},user_name = #{userName},telphone = #{telphone},create_time = #{createTime},update_time = #{updateTime},
where id = #{id}
delete from purchase_notice_person where id = #{id}
delete from purchase_notice_person where id in
#{id}
insert into purchase_notice_person(user_id,user_name,telphone,create_time) values
(#{item.userId},#{item.userName},#{item.telphone},now())