|
@@ -115,8 +115,24 @@ public class ProEconPointCodeServiceImpl extends ServiceImpl<ProEconPointCodeMap
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
- List<ProEconPointCodeDTO> dtoss = dtos.stream().sorted(Comparator.comparing(ProEconPointCodeDTO::getValue)).limit(10).collect(Collectors.toList());
|
|
|
|
|
|
+ List<String> newsto = dtos.stream().map(ProEconPointCodeDTO::getStationcode).collect(Collectors.toList());
|
|
|
+ List<String> newsta = powerstationList.stream().map(ProBasicPowerstation::getNemCode).collect(Collectors.toList());
|
|
|
+ List<String> reduce1 = newsta.stream().filter(item -> !newsto.contains(item)).collect(Collectors.toList());
|
|
|
+ for (String i : reduce1) {
|
|
|
+ if (dtos.size() >= 10) {
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ ProEconPointCodeDTO dto = new ProEconPointCodeDTO();
|
|
|
+ dto.setDescription(proEconPointCode.getDescription() + "(" + proEconPointCode.getUnit() + ")");
|
|
|
+ dto.setStationcode(CacheContext.wpmap.get(i).getNemCode());
|
|
|
+ dto.setStationname(CacheContext.wpmap.get(i).getName());
|
|
|
+ dtos.add(dto);
|
|
|
+
|
|
|
+ }
|
|
|
+ dtos.sort(Comparator.comparing(ProEconPointCodeDTO::getValue).reversed());
|
|
|
+ List<ProEconPointCodeDTO> dtoss = dtos.stream().sorted(Comparator.comparing(ProEconPointCodeDTO::getValue)).limit(10).collect(Collectors.toList());
|
|
|
+ dtoss.sort(Comparator.comparing(ProEconPointCodeDTO::getValue).reversed());
|
|
|
return dtoss;
|
|
|
}
|
|
|
|