|
@ -620,16 +620,13 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
String controlModel = otherConfig.get("controlModel").toString(); |
|
|
String controlModel = otherConfig.get("controlModel").toString(); |
|
|
props.put("onWorkStatus", otherConfig.get("state").toString()); |
|
|
props.put("onWorkStatus", otherConfig.get("state").toString()); |
|
|
props.put("inWorkStatus", otherConfig.get("state").toString()); |
|
|
props.put("inWorkStatus", otherConfig.get("state").toString()); |
|
|
if (controlModel.equals("1")) { |
|
|
props.put("mode", controlModel); |
|
|
props.put("mode", "00"); |
|
|
if (controlModel.equals("01")) { |
|
|
} else if (controlModel.equals("2")) { |
|
|
|
|
|
String startTime = otherConfig.get("startTime").toString(); |
|
|
String startTime = otherConfig.get("startTime").toString(); |
|
|
String endTime = otherConfig.get("endTime").toString(); |
|
|
String endTime = otherConfig.get("endTime").toString(); |
|
|
props.put("mode", "01"); |
|
|
props.put("mode", "01"); |
|
|
props.put("startDisplayTime", startTime); |
|
|
props.put("startDisplayTime", startTime); |
|
|
props.put("endDisplayTime", endTime); |
|
|
props.put("endDisplayTime", endTime); |
|
|
} else { |
|
|
|
|
|
props.put("mode", "02"); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
AjaxResult ajaxResult = dcDeviceController.invokedFunction(iotDeviceId, functionId, props); |
|
|
AjaxResult ajaxResult = dcDeviceController.invokedFunction(iotDeviceId, functionId, props); |
|
@ -893,7 +890,13 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
// 设备类型 数据处理
|
|
|
// 设备类型 数据处理
|
|
|
String deviceType = dcExecuteActionOperationList.stream() |
|
|
String deviceType = dcExecuteActionOperationList.stream() |
|
|
.map(DcExecuteAction::getDeviceType) |
|
|
.map(DcExecuteAction::getDeviceType) |
|
|
.map(String::valueOf) |
|
|
.distinct() |
|
|
|
|
|
.map(type -> Arrays.stream(DeviceTypeEnum.values()) |
|
|
|
|
|
.filter(deviceTypeEnum -> deviceTypeEnum.getCode() == type) |
|
|
|
|
|
.findFirst() |
|
|
|
|
|
.map(DeviceTypeEnum::getInfo) |
|
|
|
|
|
.orElse("类型异常") |
|
|
|
|
|
) |
|
|
.collect(Collectors.joining(",")); |
|
|
.collect(Collectors.joining(",")); |
|
|
dcEmergencyPlans.setDeviceType(deviceType); |
|
|
dcEmergencyPlans.setDeviceType(deviceType); |
|
|
// 可控设备 数据处理
|
|
|
// 可控设备 数据处理
|
|
@ -906,7 +909,30 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
dcEmergencyPlans.setControllableDevice(controllableDevice); |
|
|
dcEmergencyPlans.setControllableDevice(controllableDevice); |
|
|
// 控制指令 数据处理
|
|
|
// 控制指令 数据处理
|
|
|
List<String> otherConfigList = dcExecuteActionOperationList.stream() |
|
|
List<String> otherConfigList = dcExecuteActionOperationList.stream() |
|
|
.map(DcExecuteAction::getOtherConfig) |
|
|
.map(dcExecuteAction -> { |
|
|
|
|
|
JSONObject config = new JSONObject(); |
|
|
|
|
|
String otherConfig = dcExecuteAction.getOtherConfig(); |
|
|
|
|
|
JSONObject jsonObject = JSON.parseObject(otherConfig); |
|
|
|
|
|
if (dcExecuteAction.getDeviceType() == DeviceTypeConstants.DRIVING_GUIDANCE) { |
|
|
|
|
|
// 行车诱导
|
|
|
|
|
|
config.put("controlModelName",jsonObject.get("controlModelName")); |
|
|
|
|
|
config.put("name",jsonObject.get("name")); |
|
|
|
|
|
if (jsonObject.get("controlModel").toString().equals("01")) { |
|
|
|
|
|
config.put("time",jsonObject.get("startTime").toString() +"-"+jsonObject.get("endTime").toString()); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
}else if (dcExecuteAction.getDeviceType() == DeviceTypeConstants.VARIABLE_INFORMATION_FLAG || |
|
|
|
|
|
dcExecuteAction.getDeviceType() == DeviceTypeConstants.ROAD_SECTION_VOICE_BROADCASTING) { |
|
|
|
|
|
// 情报板/语音广播
|
|
|
|
|
|
config.put("content",jsonObject.get("content")); |
|
|
|
|
|
} |
|
|
|
|
|
else if (dcExecuteAction.getDeviceType() == DeviceTypeConstants.LASER_FATIGUE_AWAKENING) { |
|
|
|
|
|
// 激光疲劳唤醒
|
|
|
|
|
|
config.put("name",jsonObject.get("name")); |
|
|
|
|
|
config.put("operationDuration",jsonObject.get("operationDuration")+"分钟"); |
|
|
|
|
|
} |
|
|
|
|
|
return JSON.toJSONString(config); |
|
|
|
|
|
}) |
|
|
.collect(Collectors.toList()); |
|
|
.collect(Collectors.toList()); |
|
|
|
|
|
|
|
|
List<String> otherConfigStringList = otherConfigList.stream() |
|
|
List<String> otherConfigStringList = otherConfigList.stream() |
|
|