指标越限概率分布功能优化

This commit is contained in:
xy
2026-02-09 11:25:52 +08:00
parent bd1fb82532
commit 6e0a36fd80
3 changed files with 196 additions and 38 deletions

View File

@@ -98,6 +98,7 @@ class IcdServiceImpl implements IcdService {
detail.setDevType(Objects.isNull(finalSysDicTreeMap.get(dev.getDevModel())) ? "/":finalSysDicTreeMap.get(dev.getDevModel()).getCode());
detail.setNode(dev.getNodeProcess());
detail.setMaxProcessNum(node.getMaxProcessNum());
detail.setDevLogLevel(dev.getDevLogLevel());
// 只获取当前设备的监测点数据
List<CsLinePO> lines = lineMap.get(dev.getId());
@@ -116,6 +117,7 @@ class IcdServiceImpl implements IcdService {
monitorInfo.setPt2(line.getPt2Ratio());
monitorInfo.setCt1(line.getCtRatio());
monitorInfo.setCt2(line.getCt2Ratio());
monitorInfo.setLineLogLevel(line.getLineLogLevel());
monitorInfos.add(monitorInfo);
});
detail.setMonitorData(monitorInfos);