select reception_id, reception_name, phonenumber, introduction, avatar, status, create_by, create_time, update_by, update_time, remark from reception_personnel
insert into reception_personnel
reception_name,
phonenumber,
introduction,
avatar,
status,
create_by,
create_time,
update_by,
update_time,
remark,
#{receptionName},
#{phonenumber},
#{introduction},
#{avatar},
#{status},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update reception_personnel
reception_name = #{receptionName},
phonenumber = #{phonenumber},
introduction = #{introduction},
avatar = #{avatar},
status = #{status},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where reception_id = #{receptionId}
delete from reception_personnel where reception_id = #{receptionId}
delete from reception_personnel where reception_id in
#{receptionId}