select communication_id, personnel_name, post_id, personnel_duty, personnel_telephone_number, emergency_team_id, create_by, create_time, update_by, update_time, is_del, remarks from t_emergency_crew
insert into t_emergency_crew
personnel_name,
post_id,
personnel_duty,
personnel_telephone_number,
emergency_team_id,
create_by,
create_time,
update_by,
update_time,
is_del,
remarks,
#{personnelName},
#{postId},
#{personnelDuty},
#{personnelTelephoneNumber},
#{emergencyTeamId},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{isDel},
#{remarks},
update t_emergency_crew
personnel_name = #{personnelName},
post_id = #{postId},
personnel_duty = #{personnelDuty},
personnel_telephone_number = #{personnelTelephoneNumber},
emergency_team_id = #{emergencyTeamId},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
is_del = #{isDel},
remarks = #{remarks},
where communication_id = #{communicationId}
update t_emergency_crew set is_del='1' where communication_id = #{communicationId}
update t_emergency_crew set is_del='1' where communication_id in
#{communicationId}