#20230627 电压等级树状列表查询由查询数据库改为从缓存中获取

master
gj.liu 2 years ago
parent fb11e09c8d
commit aec9cc114a

@ -104,6 +104,8 @@ public class DyLevelServiceImpl implements DyLevelService {
for (TerminalStatus status : terminalStatusDtos) {
statusMap.put(status.getTermId(), status);
}
Map<Integer, TowerDto> towerMap = cacheService.getTowerMap();
List<TowerDto> towerList = towerMap.values().stream().collect(Collectors.toList());
Map<Integer, TowerDto> towerByLineMap = Maps.newHashMap();

Loading…
Cancel
Save