|
@@ -80,7 +80,7 @@ public class BenchmarkingHistroyService {
|
|
|
Date begin = DateUtils.getStartOfDay(addDays);
|
|
|
Date end = DateUtils.addSeconds(begin, 1);
|
|
|
|
|
|
- wtls.stream().filter(i->i.getWindpowerstationid().endsWith("FDC")).forEach(wt->{
|
|
|
+ wtls.stream().filter(i->i.getWindpowerstationid().endsWith("FDC") && !i.getId().equals("DJY01_001")).forEach(wt->{
|
|
|
Map<String,Double> wtDataMap = new HashMap<>();
|
|
|
Map<String, Windturbinetestingpointnew> nmap = wtpAimap.get(wt.getId());
|
|
|
for (String uniformcode : uniformcodes) {
|
|
@@ -145,7 +145,7 @@ public class BenchmarkingHistroyService {
|
|
|
Date addDays = DateUtils.addDays(date, 1);
|
|
|
Date begin = DateUtils.getStartOfDay(addDays);
|
|
|
Date end = DateUtils.addSeconds(begin, 1);
|
|
|
- wtls.stream().filter(i->i.getWindpowerstationid().endsWith("FDC")).forEach(wt->{
|
|
|
+ wtls.stream().filter(i->i.getWindpowerstationid().endsWith("FDC") && !i.getId().equals("DJY01_001")).forEach(wt->{
|
|
|
Map<String,Double> wtDataMap = new HashMap<>();
|
|
|
Map<String, Windturbinetestingpointnew> nmap = wtpAimap.get(wt.getId());
|
|
|
for (String uniformcode : uniformcodes) {
|