select id, congestion_mileage, congestion_cause, facility_id, ramp_id, location from dc_event_traffic_congestion
insert into dc_event_traffic_congestion
id,congestion_mileage,congestion_cause,facility_id,ramp_id,location,#{id},#{congestionMileage},#{congestionCause},#{facilityId},#{rampId},#{location},
update dc_event_traffic_congestion
congestion_mileage = #{congestionMileage},congestion_cause = #{congestionCause},facility_id = #{facilityId},ramp_id = #{rampId},location = #{location},
where id = #{id}
delete from dc_event_traffic_congestion where id = #{id}
delete from dc_event_traffic_congestion where id in
#{id}