|
|
@ -160,6 +160,10 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
|
|
|
|
dcEvent.setCreateTime(DateUtils.getNowDate()); |
|
|
|
|
|
|
|
if (eventType != 1 && eventType != 2){ |
|
|
|
dcEvent.setOccurrenceTime(DateUtils.getNowDate());//默认发生时间
|
|
|
|
} |
|
|
|
|
|
|
|
//处理无桩号事件
|
|
|
|
//交通事故
|
|
|
|
if (eventType == 1 && dcEvent.getDcEventAccident().getFacilityId() != null) { |
|
|
@ -197,7 +201,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
dcEvent.setStakeMark(extracted(facilityId)); |
|
|
|
} |
|
|
|
//桩号校验
|
|
|
|
if (!com.ruoyi.common.utils.StakeMarkUtils.checkStakeMark(dcEvent.getStakeMark())){ |
|
|
|
if (!com.ruoyi.common.utils.StakeMarkUtils.checkStakeMark(dcEvent.getStakeMark())) { |
|
|
|
return -1; |
|
|
|
} |
|
|
|
|
|
|
@ -221,6 +225,9 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
dcEvent.getDcEventAccident().setId(uuid); |
|
|
|
|
|
|
|
int i1 = dcEventAccidentMapper.insertDcEventAccident(dcEvent.getDcEventAccident()); |
|
|
|
if (dcEvent.getEventState() ==1){ |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
} |
|
|
|
} |
|
|
|
break; |
|
|
|
//车辆事故
|
|
|
@ -228,39 +235,75 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
if (dcEvent.getDcEventVehicleAccident() != null) { |
|
|
|
dcEvent.getDcEventVehicleAccident().setId(uuid); |
|
|
|
int i5 = dcEventVehicleAccidentMapper.insertDcEventVehicleAccident(dcEvent.getDcEventVehicleAccident()); |
|
|
|
if (dcEvent.getEventState() ==1){ |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
} |
|
|
|
} |
|
|
|
break; |
|
|
|
//交通管制
|
|
|
|
case 3: |
|
|
|
//交通管制事件 不做 首因关联
|
|
|
|
|
|
|
|
if (dcEvent.getDcEventTrafficControl() != null) { |
|
|
|
if (dcEventId == null) {//非首页进入
|
|
|
|
if (dcEvent.getDcEventTrafficControl().getFacilityIds() ==null ) { |
|
|
|
if (dcEvent.getDcEventTrafficControl().getFacilityIds() == null) { |
|
|
|
dcEvent.getDcEventTrafficControl().setId(uuid); |
|
|
|
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl()); |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
//事件处置页
|
|
|
|
if (dcEvent.getEventState() == 1 && dcEvent.getDcEventTrafficControl().getFacilityIds() == null) {//新增的数据不是收费站
|
|
|
|
updateDcEventState(dcEvent.getId(), 1); |
|
|
|
updateDcEventState(dcEvent.getId(), 1);//直接确认
|
|
|
|
dcEvent.getDcEventTrafficControl().setId(uuid); |
|
|
|
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl()); |
|
|
|
//查询事件
|
|
|
|
DcEvent dcEvent2 = dcEventMapper.selectDcEventById(dcEventId); |
|
|
|
//判断事件 关联事件id是否为空
|
|
|
|
if (dcEvent2.getLinkId() == null) { |
|
|
|
DcEvent dcEvent1 = new DcEvent(); |
|
|
|
dcEvent1.setId(dcEventId);//事件id
|
|
|
|
if (dcEvent2.getEventType() != 3) { |
|
|
|
dcEvent1.setEventNature(1l);//首发事件
|
|
|
|
dcEvent1.setLinkId(uuid);//关联管制事件id
|
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
DcEvent dcEvent1 = new DcEvent(); |
|
|
|
dcEvent1.setId(dcEventId);//事件id
|
|
|
|
if (dcEvent2.getEventType() != 3) { |
|
|
|
dcEvent1.setEventNature(1l);//首发事件
|
|
|
|
|
|
|
|
dcEvent1.setLinkId(dcEvent2.getLinkId() + "," + uuid);//关联管制事件id
|
|
|
|
|
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
break; |
|
|
|
} |
|
|
|
// 插入多个收费站
|
|
|
|
if (dcEvent.getDcEventTrafficControl().getFacilityIds().length == 1) {//facilityIds==1 说明只选择了一个收费站
|
|
|
|
|
|
|
|
if (dcEventId != null && !dcEventId.equals("")) {//不等于空 事件处置页面 修改
|
|
|
|
DcEvent dcEvent2 = dcEventMapper.selectDcEventById(dcEventId); |
|
|
|
|
|
|
|
DcEvent dcEvent1 = new DcEvent(); |
|
|
|
dcEvent1.setId(dcEventId);//事件id
|
|
|
|
if (dcEvent2.getEventType() != 3) { |
|
|
|
dcEvent1.setEventNature(1l);//首发事件
|
|
|
|
if (dcEvent2.getLinkId()!=null) { |
|
|
|
dcEvent1.setLinkId(dcEvent2.getLinkId()+","+uuid);//关联管制事件id
|
|
|
|
}else { |
|
|
|
dcEvent1.setLinkId(uuid);//关联管制事件id
|
|
|
|
} |
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
dcEvent.getDcEventTrafficControl().setId(uuid); |
|
|
|
dcEvent.getDcEventTrafficControl().setFacilityId(dcEvent.getDcEventTrafficControl().getFacilityIds()[0]);//取出数组字段赋值 设施id
|
|
|
|
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl());//
|
|
|
@ -272,15 +315,21 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
dcEvent.getDcEventTrafficControl().setId(uuid); |
|
|
|
dcEvent.getDcEventTrafficControl().setFacilityId(dcEvent.getDcEventTrafficControl().getFacilityIds()[0]);//取出数组字段赋值 设施id
|
|
|
|
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl()); |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else if (dcEvent.getDcEventTrafficControl().getFacilityIds().length > 1) {//facilityIds1=1 说明只选择了多个收费站
|
|
|
|
|
|
|
|
if (dcEventId != null) {//不等于空 事件处置页面 修改
|
|
|
|
DcEvent dcEvent2 = dcEventMapper.selectDcEventById(dcEventId); |
|
|
|
|
|
|
|
dcEventMapper.deleteDcEventById(uuid);//删除添加的事件主类
|
|
|
|
DcEvent dcEvent1 = new DcEvent(); |
|
|
|
dcEvent1.setId(dcEventId);//事件id
|
|
|
|
|
|
|
|
dcEvent1.setEventNature(1l);//首发事件
|
|
|
|
|
|
|
|
Map<String, String> map = new HashMap<>(); |
|
|
|
for (int i = 0; i < dcEvent.getDcEventTrafficControl().getFacilityIds().length; i++) { //设置事件Id UUID无下划线格式32
|
|
|
|
String facilityUUID = IdUtils.fastSimpleUUID(); |
|
|
@ -297,8 +346,17 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
a++; |
|
|
|
} |
|
|
|
String linkId2 = sb2.toString(); |
|
|
|
if (dcEvent2.getLinkId() !=null){ |
|
|
|
dcEvent1.setLinkId(dcEvent2.getLinkId()+","+linkId2);//关联管制事件id
|
|
|
|
}else { |
|
|
|
dcEvent1.setLinkId(linkId2);//关联管制事件id
|
|
|
|
} |
|
|
|
|
|
|
|
if (dcEvent2.getEventType() != 3) { |
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < dcEvent.getDcEventTrafficControl().getFacilityIds().length; i++) { |
|
|
|
dcEvent.getDcEventTrafficControl().setId(map.get("facilityId" + i));//交通管制事件id
|
|
|
|
dcEvent.getDcEventTrafficControl().setFacilityId(dcEvent.getDcEventTrafficControl().getFacilityIds()[i]);//取出数组字段赋值 设施id
|
|
|
@ -330,11 +388,13 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
String facilityId = String.valueOf(dcEvent.getDcEventTrafficControl().getFacilityIds()[i]); |
|
|
|
dcEvent.setStakeMark(extracted(facilityId)); |
|
|
|
} |
|
|
|
dcEvent.setOccurrenceTime(DateUtils.getNowDate());//默认发生时间
|
|
|
|
dcEventMapper.insertDcEvent(dcEvent); |
|
|
|
//首页事件 交通管制事件 添加 状态默认为 1 处置中
|
|
|
|
updateDcEventState(map.get("facilityId" + i), 1); |
|
|
|
|
|
|
|
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl()); |
|
|
|
updateDcEventState(map.get("facilityId" + i),1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
} else { |
|
|
@ -384,36 +444,48 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
dcEvent.setStakeMark(extracted(facilityId)); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
dcEvent.setOccurrenceTime(DateUtils.getNowDate());//默认发生时间
|
|
|
|
dcEventMapper.insertDcEvent(dcEvent); |
|
|
|
extracted(dcEvent); |
|
|
|
int i6 = dcEventTrafficControlMapper.insertDcEventTrafficControl(dcEvent.getDcEventTrafficControl()); |
|
|
|
updateDcEventState(map.get("facilityId" + i),1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
//交通拥堵
|
|
|
|
case 4: |
|
|
|
if (dcEvent.getDcEventTrafficCongestion() != null) { |
|
|
|
dcEvent.getDcEventTrafficCongestion().setId(uuid); |
|
|
|
int i4 = dcEventTrafficCongestionMapper.insertDcEventTrafficCongestion(dcEvent.getDcEventTrafficCongestion()); |
|
|
|
|
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
|
//非法上路
|
|
|
|
case 5: |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
break; |
|
|
|
//路障清除
|
|
|
|
case 6: |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
break; |
|
|
|
//施工建设
|
|
|
|
case 7: |
|
|
|
if (dcEvent.getDcEventConstruction() != null) { |
|
|
|
dcEvent.getDcEventConstruction().setId(uuid); |
|
|
|
int i2 = dcEventConstructionMapper.insertDcEventConstruction(dcEvent.getDcEventConstruction()); |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break; |
|
|
@ -422,21 +494,26 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
if (dcEvent.getDcEventServiceArea() != null) { |
|
|
|
dcEvent.getDcEventServiceArea().setId(uuid); |
|
|
|
int i3 = dcEventServiceAreaMapper.insertDcEventServiceArea(dcEvent.getDcEventServiceArea()); |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
break; |
|
|
|
//设施设备隐患
|
|
|
|
case 9: |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
break; |
|
|
|
//异常天气
|
|
|
|
case 10: |
|
|
|
if (dcEvent.getDcEventAbnormalWeather() != null) { |
|
|
|
dcEvent.getDcEventAbnormalWeather().setId(uuid); |
|
|
|
int i = dcEventAbnormalWeatherMapper.insertDcEventAbnormalWeather(dcEvent.getDcEventAbnormalWeather()); |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
break; |
|
|
|
//其他事件
|
|
|
|
case 11: |
|
|
|
|
|
|
|
if (dcEventId != null) {//首页进入
|
|
|
|
DcEvent dcEvent1 = new DcEvent(); |
|
|
|
dcEvent1.setId(dcEventId);//事件id
|
|
|
@ -445,6 +522,9 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
|
|
|
|
dcEvent.setEventNature(2l); |
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent);//修改 新添加的 事件性质
|
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
}else { |
|
|
|
updateDcEventState(uuid,1);//直接确认
|
|
|
|
|
|
|
|
} |
|
|
|
break; |
|
|
@ -466,19 +546,27 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
*/ |
|
|
|
private void extracted(DcEvent dcEvent) { |
|
|
|
String direction = "";// 方向
|
|
|
|
String content=""; |
|
|
|
String EventSubclass = "";// 事件类型
|
|
|
|
if (dcEvent.getDirection()!=null){ |
|
|
|
if (dcEvent.getDirection().equals("1")) { |
|
|
|
direction = "菏泽方向"; |
|
|
|
} else { |
|
|
|
direction = "济南方向"; |
|
|
|
} |
|
|
|
} |
|
|
|
for (EventSubclassEnum eventSubclass : EventSubclassEnum.values()) { |
|
|
|
if (eventSubclass.getCode().equals(dcEvent.getEventSubclass())) { |
|
|
|
EventSubclass = eventSubclass.getInfo(); |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
String content = direction + " " + dcEvent.getStakeMark() + " " + HAPPEN + EventSubclass + EVENT; |
|
|
|
if (dcEvent.getDirection()!=null){ |
|
|
|
content = direction + " " + dcEvent.getStakeMark() + " " + HAPPEN + EventSubclass + EVENT; |
|
|
|
}else { |
|
|
|
content = dcEvent.getStakeMark() + " " + HAPPEN + EventSubclass + EVENT; |
|
|
|
} |
|
|
|
|
|
|
|
Map<String, Object> contentMap = new HashMap<>(); |
|
|
|
contentMap.put("content", content); |
|
|
|
contentMap.put("event", dcEvent); |
|
|
@ -509,7 +597,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
/* if (dcEvent.getDcEventAccident() != null) { |
|
|
|
|
|
|
|
}*/ |
|
|
|
DcEventAccident dcEventAccident =new DcEventAccident(); |
|
|
|
DcEventAccident dcEventAccident = new DcEventAccident(); |
|
|
|
dcEvent.setDcEventAccident(dcEventAccident); |
|
|
|
dcEvent.getDcEventAccident().setId(uuid); |
|
|
|
dcEvent.getDcEventAccident().setReporterName("视频AI"); |
|
|
@ -522,7 +610,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
/* if (dcEvent.getDcEventVehicleAccident() != null) { |
|
|
|
|
|
|
|
}*/ |
|
|
|
DcEventVehicleAccident dcEventVehicleAccident =new DcEventVehicleAccident(); |
|
|
|
DcEventVehicleAccident dcEventVehicleAccident = new DcEventVehicleAccident(); |
|
|
|
dcEvent.setDcEventVehicleAccident(dcEventVehicleAccident); |
|
|
|
dcEvent.getDcEventVehicleAccident().setReporterName("视频AI"); |
|
|
|
dcEvent.getDcEventVehicleAccident().setReporterPhoneNumber("96659"); |
|
|
@ -535,7 +623,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
/* if (dcEvent.getDcEventTrafficControl() != null) { |
|
|
|
|
|
|
|
} */ |
|
|
|
DcEventTrafficControl dcEventTrafficControl =new DcEventTrafficControl(); |
|
|
|
DcEventTrafficControl dcEventTrafficControl = new DcEventTrafficControl(); |
|
|
|
dcEvent.setDcEventTrafficControl(dcEventTrafficControl); |
|
|
|
dcEvent.getDcEventTrafficControl().setControlType(1L);//限行
|
|
|
|
dcEvent.getDcEventTrafficControl().setControlCause(2L);//交通事故
|
|
|
@ -547,7 +635,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
/* if (dcEvent.getDcEventTrafficCongestion() != null) { |
|
|
|
|
|
|
|
}*/ |
|
|
|
DcEventTrafficCongestion dcEventTrafficCongestion =new DcEventTrafficCongestion(); |
|
|
|
DcEventTrafficCongestion dcEventTrafficCongestion = new DcEventTrafficCongestion(); |
|
|
|
dcEvent.setDcEventTrafficCongestion(dcEventTrafficCongestion); |
|
|
|
dcEvent.getDcEventTrafficCongestion().setId(uuid); |
|
|
|
dcEvent.getDcEventTrafficCongestion().setCongestionMileage(0F);//拥堵里程(公里)
|
|
|
@ -566,7 +654,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
/* if (dcEvent.getDcEventConstruction() != null) { |
|
|
|
|
|
|
|
}*/ |
|
|
|
DcEventConstruction dcEventConstruction =new DcEventConstruction(); |
|
|
|
DcEventConstruction dcEventConstruction = new DcEventConstruction(); |
|
|
|
dcEvent.setDcEventConstruction(dcEventConstruction); |
|
|
|
dcEvent.getDcEventConstruction().setId(uuid); |
|
|
|
dcEvent.getDcEventConstruction().setControlMode(1l);//封闭
|
|
|
@ -577,7 +665,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
/* if (dcEvent.getDcEventServiceArea() != null) { |
|
|
|
|
|
|
|
}*/ |
|
|
|
DcEventServiceArea dcEventServiceArea =new DcEventServiceArea(); |
|
|
|
DcEventServiceArea dcEventServiceArea = new DcEventServiceArea(); |
|
|
|
dcEvent.setDcEventServiceArea(dcEventServiceArea); |
|
|
|
dcEvent.getDcEventServiceArea().setId(uuid); |
|
|
|
int i3 = dcEventServiceAreaMapper.insertDcEventServiceArea(dcEvent.getDcEventServiceArea()); |
|
|
@ -589,7 +677,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
case 10: |
|
|
|
/* if (dcEvent.getDcEventAbnormalWeather() != null) { |
|
|
|
}*/ |
|
|
|
DcEventAbnormalWeather dcEventAbnormalWeather =new DcEventAbnormalWeather(); |
|
|
|
DcEventAbnormalWeather dcEventAbnormalWeather = new DcEventAbnormalWeather(); |
|
|
|
dcEvent.setDcEventAbnormalWeather(dcEventAbnormalWeather); |
|
|
|
dcEvent.getDcEventAbnormalWeather().setId(uuid); |
|
|
|
dcEvent.getDcEventAbnormalWeather().setWeatherSituation("1-1");//雨雾
|
|
|
@ -747,6 +835,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
* @return 结果 |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
|
|
|
|
public int updateDcEvent(DcEvent dcEvent) { |
|
|
|
/* |
|
|
|
//事件类型校验
|
|
|
@ -783,12 +872,15 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
int i7 = dcEventMapper.updateDcEvent(dcEvent); |
|
|
|
if (i7 > 0) { |
|
|
|
String context = comparisonInfo(oldEvent, dcEvent); |
|
|
|
if (context.length() > 0) { |
|
|
|
//事件处置流程记录
|
|
|
|
DcEventProcess dcEventProcess = new DcEventProcess(); |
|
|
|
dcEventProcess.setEventId(dcEvent.getId()); |
|
|
|
dcEventProcess.setSource(1); |
|
|
|
dcEventProcess.setContext(context); |
|
|
|
dcEventProcessService.insertDcEventProcess(dcEventProcess); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//中间库
|
|
|
|
MdEvent mdEvent = new MdEvent(dcEvent); |
|
|
@ -1096,10 +1188,12 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
if (dcEvent1 == null) { |
|
|
|
return 1; |
|
|
|
} |
|
|
|
/* |
|
|
|
//事件状态已被修改 返回成功
|
|
|
|
if (dcEvent1.getEventState() == state) { |
|
|
|
return 1; |
|
|
|
} |
|
|
|
*/ |
|
|
|
|
|
|
|
int i = dcEventMapper.updateDcEventState(id, state); |
|
|
|
if (i > 0) { |
|
|
@ -1125,64 +1219,6 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
dcEventProcess.setContext("由" + sourceName + "上报了一起" + typeName + "事件"); |
|
|
|
dcEventProcessService.insertDcEventProcess(dcEventProcess); |
|
|
|
|
|
|
|
//插入调度默认数据
|
|
|
|
ArrayList<HashMap<String,Object>> hashMaps = new ArrayList<>(); |
|
|
|
String stakeMark = dcEvent.getStakeMark();//传入桩号
|
|
|
|
List<HashMap<String, Object>> mapList = dcWarningMapper.selectRecentlySection();//全部机构的桩号和名称
|
|
|
|
for (HashMap<String,Object> map:mapList){ |
|
|
|
if (org.apache.commons.lang3.StringUtils.isBlank(map.get("stakeMark").toString())){ |
|
|
|
continue; |
|
|
|
} |
|
|
|
Long sectionId = (Long) map.get("id");//机构的id
|
|
|
|
String stakeMarkNew = map.get("stakeMark").toString();//机构桩号
|
|
|
|
com.zc.business.utils.StakeMarkUtils stakeMarkUtils = new StakeMarkUtils(); |
|
|
|
Integer itselfStakeMark = stakeMarkUtils.stakeMarkToInt(stakeMarkNew);//机构本身的米数
|
|
|
|
Integer afferentStakeMark = stakeMarkUtils.stakeMarkToInt(stakeMark);//传入的桩号米数
|
|
|
|
Integer difference =Math.abs(afferentStakeMark-itselfStakeMark); //计算距离绝对值
|
|
|
|
map.put("difference",difference/1000.0);//米转公里加入到map
|
|
|
|
map.put("id",sectionId); |
|
|
|
hashMaps.add(map); |
|
|
|
} |
|
|
|
List<HashMap<String, Object>> sortedHashMaps = hashMaps.stream().sorted(Comparator.comparing(map -> { |
|
|
|
return (Double) map.get("difference"); })).collect(Collectors.toList()); |
|
|
|
HashMap<String, Object> hashMap = dcWarningMapper.selectDcDispatch(id);//查询事件是否已经有转的调度记录
|
|
|
|
if (!sortedHashMaps.isEmpty()&&hashMap==null) { |
|
|
|
HashMap<String, Object> map = sortedHashMaps.get(0); |
|
|
|
Long sortId = (Long) map.get("id");//取出最近的机构id
|
|
|
|
if (sortId != null) { |
|
|
|
DcDispatch dcDispatch = new DcDispatch(); |
|
|
|
DcDispatchResource dcDispatchResource = new DcDispatchResource(); |
|
|
|
dcDispatch.setDeptId(SecurityUtils.getLoginUser().getDeptId()); |
|
|
|
dcDispatch.setEventId(id); |
|
|
|
dcDispatch.setStartTime(DateUtils.getNowDate()); |
|
|
|
dcDispatch.setDispatchStatus(2L);//进行中状态
|
|
|
|
dcDispatch.setRemark(dcEvent.getRemark()); |
|
|
|
dcWarningMapper.insertDcDispatch(dcDispatch);//事件绑定信息记录
|
|
|
|
Long dispatchId = dcDispatch.getId();//信息记录id
|
|
|
|
List<HashMap<String, Object>> employeesMap = dcWarningMapper.selectOrganizationEmployees(sortId);//人员map
|
|
|
|
if (employeesMap != null&&employeesMap.size()>0) { |
|
|
|
// 生成一个随机索引,范围在0到列表长度减1之间
|
|
|
|
int randomIndex = ThreadLocalRandom.current().nextInt(employeesMap.size()); |
|
|
|
HashMap<String, Object> randomEmployee = employeesMap.get(randomIndex); |
|
|
|
Long employeesId = (Long) randomEmployee.get("id");//随机人员id
|
|
|
|
dcDispatchResource.setResourceId(employeesId);//资源id
|
|
|
|
dcDispatchResource.setDispatchType(1);//资源类型
|
|
|
|
dcDispatchResource.setDispatchId(dispatchId);//信息记录id
|
|
|
|
dcWarningMapper.insertDispatchResource(dcDispatchResource); |
|
|
|
} |
|
|
|
List<HashMap<String, Object>> vehiclesMap = dcWarningMapper.selectVehicles(sortId);//车辆map
|
|
|
|
if (vehiclesMap != null&&vehiclesMap.size()>0) { |
|
|
|
// 生成一个随机索引,范围在0到列表长度减1之间
|
|
|
|
int randomIndex = ThreadLocalRandom.current().nextInt(vehiclesMap.size()); |
|
|
|
HashMap<String, Object> randomEmployee = employeesMap.get(randomIndex); |
|
|
|
Long vehiclesId = (Long) randomEmployee.get("id");//随机车辆id
|
|
|
|
dcDispatchResource.setResourceId(vehiclesId);//资源id
|
|
|
|
dcDispatchResource.setDispatchType(2);//资源类型
|
|
|
|
dcDispatchResource.setDispatchId(dispatchId);//信息记录id
|
|
|
|
dcWarningMapper.insertDispatchResource(dcDispatchResource);//绑定车辆信息
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return i; |
|
|
|
} |
|
|
@ -1228,12 +1264,21 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
} else if ("direction".equals(result.getRightPath())) { |
|
|
|
|
|
|
|
if (("1".equals(result.getRight()) || "上行".equals(result.getRight()) || "菏泽方向".equals(result.getRight())) |
|
|
|
&& ("1".equals(result.getLeft()) || "上行".equals(result.getLeft()) || "菏泽方向".equals(result.getLeft()))) { |
|
|
|
continue; |
|
|
|
} else if (("3".equals(result.getRight()) || "下行".equals(result.getRight()) || "济南方向".equals(result.getRight())) |
|
|
|
&& ("3".equals(result.getLeft()) || "下行".equals(result.getLeft()) || "济南方向".equals(result.getLeft()))) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
|
|
|
|
if ("1".equals(result.getRight())) { |
|
|
|
result.setRight("上行"); |
|
|
|
result.setRight("菏泽方向"); |
|
|
|
} else if ("2".equals(result.getRight())) { |
|
|
|
result.setRight("中"); |
|
|
|
} else if ("3".equals(result.getRight())) { |
|
|
|
result.setRight("下行"); |
|
|
|
result.setRight("济南方向"); |
|
|
|
} |
|
|
|
} else if ("eventSubclass".equals(result.getRightPath())) { |
|
|
|
if ("1-1".equals(result.getRight())) { |
|
|
@ -1636,6 +1681,24 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
result.setRight("主线并道"); |
|
|
|
} else if ("5".equals(result.getRight())) { |
|
|
|
result.setRight("主线限速"); |
|
|
|
} else if ("6".equals(result.getRight())) { |
|
|
|
result.setRight("收费站关闭"); |
|
|
|
} else if ("7".equals(result.getRight())) { |
|
|
|
result.setRight("收费站限行"); |
|
|
|
} else if ("8".equals(result.getRight())) { |
|
|
|
result.setRight("收费站分流"); |
|
|
|
} else if ("9".equals(result.getRight())) { |
|
|
|
result.setRight("收费站间隔放行"); |
|
|
|
} else if ("10".equals(result.getRight())) { |
|
|
|
result.setRight("立交匝道关闭"); |
|
|
|
} else if ("11".equals(result.getRight())) { |
|
|
|
result.setRight("立交限行"); |
|
|
|
} else if ("12".equals(result.getRight())) { |
|
|
|
result.setRight("立交匝道限行"); |
|
|
|
} else if ("13".equals(result.getRight())) { |
|
|
|
result.setRight("立交分流"); |
|
|
|
} else if ("14".equals(result.getRight())) { |
|
|
|
result.setRight("服务区关闭"); |
|
|
|
} |
|
|
|
} else if ("dcEventTrafficControl.limitedType".equals(result.getRightPath())) { |
|
|
|
if ("1".equals(result.getRight())) { |
|
|
@ -1748,6 +1811,24 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
return AjaxResult.success("无需清障成功"); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 调度记录 |
|
|
|
* |
|
|
|
* @param dcEvent |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public List<DcEvent> dispatchRecordEventList(DcEvent dcEvent) { |
|
|
|
dcEvent.setEventState(2l); |
|
|
|
List<DcEvent> dcEvents = dcEventMapper.dispatchRecordEventList(dcEvent); |
|
|
|
for (DcEvent event : dcEvents) { |
|
|
|
List<DcEventProcess> dcEventProcess = dcEventProcessService.selectDcEventProcessByEventId(event.getId()); |
|
|
|
event.setDcEventProcessList(dcEventProcess); |
|
|
|
} |
|
|
|
|
|
|
|
return dcEvents; |
|
|
|
} |
|
|
|
|
|
|
|
//时间比对
|
|
|
|
public static String getDatePoor(Date endDate, Date nowDate) { |
|
|
|
|
|
|
@ -1772,4 +1853,34 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @param eventId |
|
|
|
* @return com.ruoyi.common.core.domain.AjaxResult |
|
|
|
* @Description 查询关联事件 |
|
|
|
* @author liuwenge |
|
|
|
* @date 2024/5/30 14:29 |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public AjaxResult getLinkEvent(String eventId) { |
|
|
|
|
|
|
|
List<Map<String, Object>> result = new ArrayList<>(); |
|
|
|
DcEvent dcEvent = dcEventMapper.selectDcEventById(eventId); |
|
|
|
if (StringUtils.isNotEmpty(dcEvent.getLinkId())) { |
|
|
|
Map<String, Object> item = new HashMap<>(); |
|
|
|
item.put("eventId", eventId); |
|
|
|
item.put("eventNature", dcEvent.getEventNature()); |
|
|
|
result.add(item); |
|
|
|
|
|
|
|
String[] linkIds = dcEvent.getLinkId().split(","); |
|
|
|
for (String linkId : linkIds) { |
|
|
|
item = new HashMap<>(); |
|
|
|
item.put("eventId", linkId); |
|
|
|
item.put("eventNature", 2); |
|
|
|
result.add(item); |
|
|
|
} |
|
|
|
} |
|
|
|
return AjaxResult.success(result); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|