|
|
@ -217,7 +217,7 @@ public class DcGantryStatisticsDataImpl extends ServiceImpl<DcGantryStatisticsDa |
|
|
|
|
|
|
|
// 过滤孝里虚-平阴北虚 和 平阴北虚-孝里虚的数据
|
|
|
|
List<Map<String, String>> filteredList = mapList.stream() |
|
|
|
.filter(map -> "孝里虚-平阴北虚".equals(map.get("name")) || "平阴北虚-孝里虚".equals(map.get("name"))) |
|
|
|
.filter(map -> !"孝里虚-平阴北虚".equals(map.get("name")) && !"平阴北虚-孝里虚".equals(map.get("name"))) |
|
|
|
.collect(Collectors.toList()); |
|
|
|
return filteredList; |
|
|
|
} |
|
|
@ -250,7 +250,7 @@ public class DcGantryStatisticsDataImpl extends ServiceImpl<DcGantryStatisticsDa |
|
|
|
|
|
|
|
// 孝里虚-平阴北虚 或 平阴北虚-孝里虚的数据
|
|
|
|
List<Map<String, String>> filteredList = mapList.stream() |
|
|
|
.filter(map -> "孝里虚-平阴北虚".equals(map.get("facilityName")) || "平阴北虚-孝里虚".equals(map.get("facilityName"))) |
|
|
|
.filter(map ->! "孝里虚-平阴北虚".equals(map.get("facilityName")) && !"平阴北虚-孝里虚".equals(map.get("facilityName"))) |
|
|
|
.collect(Collectors.toList()); |
|
|
|
return filteredList; |
|
|
|
} |
|
|
|