|
|
@ -855,7 +855,7 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
|
JSONObject foundContent = contentList.stream() |
|
|
|
.map(content -> JSON.parseObject(content.toString())) |
|
|
|
.filter(jsonObject -> |
|
|
|
Integer.parseInt(jsonObject.get("dcDeviceId").toString()) == device.getId()) |
|
|
|
jsonObject.get("dcDeviceId").toString().equals(device.getId().toString())) |
|
|
|
.findFirst() |
|
|
|
.orElse(null); |
|
|
|
if (foundContent == null) { |
|
|
@ -884,7 +884,7 @@ public class DcEmergencyPlansServiceImpl implements DcEmergencyPlansService { |
|
|
|
JSONObject foundContent = contentList.stream() |
|
|
|
.map(content -> JSON.parseObject(content.toString())) |
|
|
|
.filter(jsonObject -> |
|
|
|
Integer.parseInt(jsonObject.get("dcDeviceId").toString()) == device.getId()) |
|
|
|
jsonObject.get("dcDeviceId").toString().equals(device.getId().toString())) |
|
|
|
.findFirst() |
|
|
|
.orElse(null); |
|
|
|
if (foundContent == null) { |
|
|
|