Browse Source

修改事件确认接口中的模板匹配

develop
Mr.Wang 11 months ago
parent
commit
a07a80dcf2
  1. 4
      zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java

4
zc-business/src/main/java/com/zc/business/service/impl/DcEmergencyPlansServiceImpl.java

@ -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) {

Loading…
Cancel
Save