fix: 优化电压空判断

dev
huangfeng 7 months ago
parent 8da684e125
commit 08994dcb45

@ -197,9 +197,11 @@ public class LineServiceImpl implements LineService {
private void fillOther(List<Lines> list) { private void fillOther(List<Lines> list) {
for (Lines line : list) { for (Lines line : list) {
DyLevel dy = newCacheService.getDy(line.getDyLevelId()); DyLevel dy = newCacheService.getDy(line.getDyLevelId());
if (dy != null) {
line.setDyLevelName(dy.getName()); line.setDyLevelName(dy.getName());
} }
} }
}
/** /**
* 线 * 线

Loading…
Cancel
Save