|
@@ -25,7 +25,7 @@ public class AlarmService {
|
|
|
|
|
|
ApiClient client = new ApiClient();
|
|
|
|
|
|
- public List<PoliceVo.AlarmDetails> Alarm(String type,String wtid) throws Exception {
|
|
|
+ public List<PoliceVo.AlarmDetails> Alarm(String type, String wtid) throws Exception {
|
|
|
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
// 获取当天零点时间
|
|
@@ -67,6 +67,7 @@ public class AlarmService {
|
|
|
"",
|
|
|
modelId,
|
|
|
"windturbine",
|
|
|
+ "",
|
|
|
type,
|
|
|
"",
|
|
|
"",
|
|
@@ -88,7 +89,7 @@ public class AlarmService {
|
|
|
list.add(alarm1);
|
|
|
}
|
|
|
}
|
|
|
- } catch (IOException e){
|
|
|
+ } catch (IOException e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return list;
|
|
@@ -125,73 +126,76 @@ public class AlarmService {
|
|
|
station = equipments.get(0).getWindpowerstationId();
|
|
|
}
|
|
|
|
|
|
- String zsresult = client.getgzFromApi(
|
|
|
- startTime,
|
|
|
- endTime,
|
|
|
- "windturbine",
|
|
|
- station,
|
|
|
- wtid,
|
|
|
- "",
|
|
|
- modelId,
|
|
|
- "windturbine",
|
|
|
- "",
|
|
|
- "",
|
|
|
- "",
|
|
|
- "1",
|
|
|
- "1000"
|
|
|
- );
|
|
|
- // 解析所有类别预警数据
|
|
|
- try {
|
|
|
- // 调用parseJson方法解析JSON
|
|
|
- PoliceVo policeVo = parseJson(zsresult);
|
|
|
-
|
|
|
- if (policeVo != null) {
|
|
|
-
|
|
|
- // 输出解析后的对象,检查内容
|
|
|
- List<PoliceVo.AlarmDetails> alarmList1 = policeVo.getData().getLs();
|
|
|
- for (PoliceVo.AlarmDetails alarm1 : alarmList1) {
|
|
|
- zslist.add(alarm1);
|
|
|
+ for (ProEconAlarmType p : bylist) {
|
|
|
+
|
|
|
+ String zsresult = client.getgzFromApi(
|
|
|
+ startTime,
|
|
|
+ endTime,
|
|
|
+ "windturbine",
|
|
|
+ station,
|
|
|
+ wtid,
|
|
|
+ "",
|
|
|
+ modelId,
|
|
|
+ "windturbine",
|
|
|
+ "",
|
|
|
+ p.getNemCode(),
|
|
|
+ "",
|
|
|
+ "",
|
|
|
+ "1",
|
|
|
+ "1000"
|
|
|
+ );
|
|
|
+ // 解析所有类别预警数据
|
|
|
+ try {
|
|
|
+ // 调用parseJson方法解析JSON
|
|
|
+ PoliceVo policeVo = parseJson(zsresult);
|
|
|
+
|
|
|
+ if (policeVo != null) {
|
|
|
+
|
|
|
+ // 输出解析后的对象,检查内容
|
|
|
+ List<PoliceVo.AlarmDetails> alarmList1 = policeVo.getData().getLs();
|
|
|
+ for (PoliceVo.AlarmDetails alarm1 : alarmList1) {
|
|
|
+ zslist.add(alarm1);
|
|
|
+ }
|
|
|
}
|
|
|
+ } catch (IOException e) {
|
|
|
+ e.printStackTrace();
|
|
|
}
|
|
|
- } catch (IOException e){
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
-
|
|
|
- List<ProEconAlarmType> bylists = proEconAlarmTypeService.bylists();
|
|
|
|
|
|
+// // 创建一个 name 到 nemcode 的映射
|
|
|
+// Map<String, String> nameToNemcodeMap = bylists.stream()
|
|
|
+// .collect(Collectors.toMap(
|
|
|
+// ProEconAlarmType::getNemCode,
|
|
|
+// ProEconAlarmType::getName,
|
|
|
+// (existing, replacement) -> existing // 保留已存在的值(第一个)
|
|
|
+// ));
|
|
|
+//
|
|
|
+// // 创建一个新的 Map 存储替换后的结果
|
|
|
+// Map<String, Long> updatedComponentCountMap = new HashMap<>();
|
|
|
+//
|
|
|
+//
|
|
|
+// // 遍历 componentCountMap
|
|
|
+// componentCountMap.forEach((key, value) -> {
|
|
|
+// // 检查是否能匹配到 nemcode
|
|
|
+// if (nameToNemcodeMap.containsKey(key)) {
|
|
|
+// // 如果匹配,使用 nemcode 替换 key
|
|
|
+// updatedComponentCountMap.put(nameToNemcodeMap.get(key), value);
|
|
|
+// } else {
|
|
|
+// // 如果未匹配,保留原来的 key
|
|
|
+// updatedComponentCountMap.put("QT", value);
|
|
|
+// }
|
|
|
+// });
|
|
|
+ }
|
|
|
Map<String, Long> componentCountMap = zslist.stream()
|
|
|
.collect(Collectors.groupingBy(
|
|
|
- PoliceVo.AlarmDetails::getComponents, // 分组条件:按照 components 字段
|
|
|
+ PoliceVo.AlarmDetails::getSubcomponents, // 分组条件:按照 components 字段
|
|
|
Collectors.counting() // 统计数量
|
|
|
));
|
|
|
+ Long zscount = (long) zslist.size();
|
|
|
+ componentCountMap.put("zs", zscount);
|
|
|
+ map.put("data", bylist);
|
|
|
+ map.put("count", componentCountMap);
|
|
|
|
|
|
- // 创建一个 name 到 nemcode 的映射
|
|
|
- Map<String, String> nameToNemcodeMap = bylists.stream()
|
|
|
- .collect(Collectors.toMap(
|
|
|
- ProEconAlarmType::getName,
|
|
|
- ProEconAlarmType::getNemCode,
|
|
|
- (existing, replacement) -> existing // 保留已存在的值(第一个)
|
|
|
- ));
|
|
|
|
|
|
- // 创建一个新的 Map 存储替换后的结果
|
|
|
- Map<String, Long> updatedComponentCountMap = new HashMap<>();
|
|
|
-
|
|
|
-
|
|
|
- // 遍历 componentCountMap
|
|
|
- componentCountMap.forEach((key, value) -> {
|
|
|
- // 检查是否能匹配到 nemcode
|
|
|
- if (nameToNemcodeMap.containsKey(key)) {
|
|
|
- // 如果匹配,使用 nemcode 替换 key
|
|
|
- updatedComponentCountMap.put(nameToNemcodeMap.get(key), value);
|
|
|
- } else {
|
|
|
- // 如果未匹配,保留原来的 key
|
|
|
- updatedComponentCountMap.put(key, value);
|
|
|
- }
|
|
|
- });
|
|
|
- Long zscount = (long) zslist.size();
|
|
|
- updatedComponentCountMap.put("zs",zscount);
|
|
|
- map.put("data",bylist);
|
|
|
- map.put("count",updatedComponentCountMap);
|
|
|
return map;
|
|
|
}
|
|
|
|