|
|
@ -245,11 +245,25 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
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
|
|
|
|
dcEvent1.setEventNature(1l);//首发事件
|
|
|
|
dcEvent1.setLinkId(uuid);//关联管制事件id
|
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
|
|
|
|
}else { |
|
|
|
|
|
|
|
DcEvent dcEvent1 = new DcEvent(); |
|
|
|
dcEvent1.setId(dcEventId);//事件id
|
|
|
|
dcEvent1.setEventNature(1l);//首发事件
|
|
|
|
dcEvent1.setLinkId(dcEvent2.getLinkId()+","+uuid);//关联管制事件id
|
|
|
|
dcEventMapper.updateDcEventLinkId(dcEvent1);//修改事件性质
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
break; |
|
|
|
} |
|
|
|
// 插入多个收费站
|
|
|
@ -261,6 +275,7 @@ public class DcEventServiceImpl extends ServiceImpl<DcEventMapper, DcEvent> impl |
|
|
|
dcEvent1.setEventNature(1l);//首发事件
|
|
|
|
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());//
|
|
|
@ -1762,6 +1777,23 @@ 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) { |
|
|
|
|
|
|
|