Commit add1af33 authored by hanbing's avatar hanbing

[add] 新信号评价-运行评价-热力图

parent 7f50efb6
...@@ -539,9 +539,11 @@ public class RunningEvaluateServiceImpl implements RunningEvaluateService { ...@@ -539,9 +539,11 @@ public class RunningEvaluateServiceImpl implements RunningEvaluateService {
// 遍历 filteredGrouped,提取每个 key 和与该 key 关联的列表的元素个数 // 遍历 filteredGrouped,提取每个 key 和与该 key 关联的列表的元素个数
filteredGrouped.forEach((key, list) -> { filteredGrouped.forEach((key, list) -> {
RunningEvaluateHeatMapVO runningEvaluateHeatMapVO = new RunningEvaluateHeatMapVO(); RunningEvaluateHeatMapVO runningEvaluateHeatMapVO = new RunningEvaluateHeatMapVO();
if (ObjectUtil.isNotEmpty(key)) {
runningEvaluateHeatMapVO.setDir(Integer.parseInt(key)); runningEvaluateHeatMapVO.setDir(Integer.parseInt(key));
runningEvaluateHeatMapVO.setCounts(list.size()); runningEvaluateHeatMapVO.setCounts(list.size());
res.add(runningEvaluateHeatMapVO); res.add(runningEvaluateHeatMapVO);
}
}); });
return res; return res;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment