|
@@ -2072,6 +2072,11 @@ public class BenchmarkingService {
|
|
|
}
|
|
|
|
|
|
public Map<String, List<Windturbine>> wpwtlist() {
|
|
|
+ Map<String, List<Windturbine>> wtmap = CacheContext.wtmap;
|
|
|
+ Set<String> wpids = wtmap.keySet();
|
|
|
+ wpids.stream().forEach(wp->{
|
|
|
+ SortUtils.sort(wtmap.get(wp),"id",SortUtils.ASC);
|
|
|
+ });
|
|
|
return CacheContext.wtmap;
|
|
|
}
|
|
|
}
|