select entrance_guard_person_id, person_name, person_num, action_type, action_time, create_by, create_time, update_by, update_time, is_del, remark from t_entrance_guard_person_info
insert into t_entrance_guard_person_info
person_name,
person_num,
action_type,
action_time,
create_by,
create_time,
update_by,
update_time,
is_del,
remark,
#{personName},
#{personNum},
#{actionType},
#{actionTime},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{isDel},
#{remark},
update t_entrance_guard_person_info
person_name = #{personName},
person_num = #{personNum},
action_type = #{actionType},
action_time = #{actionTime},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
is_del = #{isDel},
remark = #{remark},
where entrance_guard_person_id = #{entranceGuardPersonId}
delete from t_entrance_guard_person_info where entrance_guard_person_id = #{entranceGuardPersonId}
delete from t_entrance_guard_person_info where entrance_guard_person_id in
#{entranceGuardPersonId}