|
@@ -1,5 +1,6 @@
|
|
|
package com.gyee.runeconomy.service.singleanalysis;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.gyee.common.model.StringUtils;
|
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
@@ -35,21 +36,27 @@ public class SingleAnalysisService {
|
|
|
List<ProEconInOrOutSpeedTotal> iostls=null;
|
|
|
if(StringUtils.notEmp(wpId))
|
|
|
{
|
|
|
- iostls= proEconInOrOutSpeedTotalService.list()
|
|
|
- .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
- && i.getCompanyId().equals(cmId)
|
|
|
- && i.getTypes().equals(type)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId).eq("windpowerstation_id",wpId);
|
|
|
+ iostls= proEconInOrOutSpeedTotalService.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
+// && i.getCompanyId().equals(cmId)
|
|
|
+// && i.getTypes().equals(type)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}else
|
|
|
{
|
|
|
- iostls= proEconInOrOutSpeedTotalService.list()
|
|
|
- .stream().filter(i-> i.getCompanyId().equals(cmId)
|
|
|
- && i.getTypes().equals(type)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId);
|
|
|
+ iostls= proEconInOrOutSpeedTotalService.list(queryWrapper);
|
|
|
+// .stream().filter(i-> i.getCompanyId().equals(cmId)
|
|
|
+// && i.getTypes().equals(type)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
//List转map
|
|
@@ -64,19 +71,25 @@ public class SingleAnalysisService {
|
|
|
List<ProEconEquipmentInfoDay1> iostls=null;
|
|
|
if(StringUtils.notEmp(wpId))
|
|
|
{
|
|
|
- iostls= proEconEquipmentInfoDay1Service.list()
|
|
|
- .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
- && i.getCompanyId().equals(cmId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId).eq("windpowerstation_id",wpId);
|
|
|
+ iostls= proEconEquipmentInfoDay1Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
+// && i.getCompanyId().equals(cmId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}else
|
|
|
{
|
|
|
- iostls= proEconEquipmentInfoDay1Service.list()
|
|
|
- .stream().filter(i-> i.getCompanyId().equals(cmId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId);
|
|
|
+ iostls= proEconEquipmentInfoDay1Service.list(queryWrapper);
|
|
|
+// .stream().filter(i-> i.getCompanyId().equals(cmId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
//List转map
|
|
@@ -90,20 +103,26 @@ public class SingleAnalysisService {
|
|
|
|
|
|
if(StringUtils.notEmp(wpId))
|
|
|
{
|
|
|
- iostls= proEconEquipmentInfoDay2Service.list()
|
|
|
- .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
- && i.getCompanyId().equals(cmId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId).eq("windpowerstation_id",wpId);
|
|
|
+ iostls= proEconEquipmentInfoDay2Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
+// && i.getCompanyId().equals(cmId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}else
|
|
|
{
|
|
|
- iostls= proEconEquipmentInfoDay2Service.list()
|
|
|
- .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
- && i.getCompanyId().equals(cmId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId);
|
|
|
+ iostls= proEconEquipmentInfoDay2Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
+// && i.getCompanyId().equals(cmId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}
|
|
|
//List转map
|
|
|
Map<String, ProEconEquipmentInfoDay2> iostmap=iostls.stream().
|
|
@@ -114,13 +133,16 @@ public class SingleAnalysisService {
|
|
|
|
|
|
|
|
|
List<ProEconPowerstationInfoDay5> iostls=null;
|
|
|
- iostls= proEconPowerstationInfoDay5Service.list()
|
|
|
- .stream().filter(i->
|
|
|
- i.getCompanyId() !=null
|
|
|
- && i.getCompanyId().equals(cmId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate).isNotNull("company_id")
|
|
|
+ .eq("company_id",cmId);
|
|
|
+ iostls= proEconPowerstationInfoDay5Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->
|
|
|
+// i.getCompanyId() !=null
|
|
|
+// && i.getCompanyId().equals(cmId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
//List转map
|
|
|
Map<String, ProEconPowerstationInfoDay5> iostmap=iostls.stream().
|
|
|
collect(Collectors.toMap(ProEconPowerstationInfoDay5::getWindpowerstationId, Function.identity(), (key1, key2) -> key2));
|
|
@@ -133,19 +155,25 @@ public class SingleAnalysisService {
|
|
|
List<ProEconEquipmentInfoDay4> iostls= null;
|
|
|
if(StringUtils.notEmp(wpId))
|
|
|
{
|
|
|
- iostls= proEconEquipmentInfoDay4Service.list()
|
|
|
- .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
- && i.getCompanyId().equals(cmId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId).eq("windpowerstation_id",wpId);
|
|
|
+ iostls= proEconEquipmentInfoDay4Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
|
+// && i.getCompanyId().equals(cmId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}else
|
|
|
{
|
|
|
- iostls= proEconEquipmentInfoDay4Service.list()
|
|
|
- .stream().filter(i-> i.getCompanyId().equals(cmId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
+ .eq("company_id",cmId).eq("windpowerstation_id",wpId);
|
|
|
+ iostls= proEconEquipmentInfoDay4Service.list(queryWrapper);
|
|
|
+// .stream().filter(i-> i.getCompanyId().equals(cmId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}
|
|
|
//List转map
|
|
|
Map<String, ProEconEquipmentInfoDay4> iostmap=iostls.stream().
|
|
@@ -157,11 +185,14 @@ public class SingleAnalysisService {
|
|
|
private Map<String, ProEconInOrOutSpeedTotal> queryInOrOutSpeedTotalByWt(String wtId, Date recordDate) {
|
|
|
|
|
|
|
|
|
- List<ProEconInOrOutSpeedTotal> iostls= proEconInOrOutSpeedTotalService.list()
|
|
|
- .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconInOrOutSpeedTotal> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
+ .eq("windturbine_id",wtId);
|
|
|
+ List<ProEconInOrOutSpeedTotal> iostls= proEconInOrOutSpeedTotalService.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
//List转map
|
|
|
Map<String, ProEconInOrOutSpeedTotal> iostmap=iostls.stream().
|
|
|
collect(Collectors.toMap(ProEconInOrOutSpeedTotal::getWindturbineId, Function.identity(), (key1, key2) -> key2));
|
|
@@ -170,12 +201,14 @@ public class SingleAnalysisService {
|
|
|
|
|
|
private Map<String, ProEconEquipmentInfoDay1> queryEquipmentInfoDay1ByWt(String wtId, Date recordDate) {
|
|
|
|
|
|
-
|
|
|
- List<ProEconEquipmentInfoDay1> iostls= proEconEquipmentInfoDay1Service.list()
|
|
|
- .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
+ .eq("windturbine_id",wtId);
|
|
|
+ List<ProEconEquipmentInfoDay1> iostls= proEconEquipmentInfoDay1Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
//List转map
|
|
|
Map<String, ProEconEquipmentInfoDay1> iostmap=iostls.stream().
|
|
|
collect(Collectors.toMap(ProEconEquipmentInfoDay1::getWindturbineId, Function.identity(), (key1, key2) -> key2));
|
|
@@ -183,12 +216,14 @@ public class SingleAnalysisService {
|
|
|
}
|
|
|
private Map<String, ProEconEquipmentInfoDay2> queryEquipmentInfoDay2ByWt(String wtId, Date recordDate) {
|
|
|
|
|
|
-
|
|
|
- List<ProEconEquipmentInfoDay2> iostls= proEconEquipmentInfoDay2Service.list()
|
|
|
- .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
+ .eq("windturbine_id",wtId);
|
|
|
+ List<ProEconEquipmentInfoDay2> iostls= proEconEquipmentInfoDay2Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
//List转map
|
|
|
Map<String, ProEconEquipmentInfoDay2> iostmap=iostls.stream().
|
|
|
collect(Collectors.toMap(ProEconEquipmentInfoDay2::getWindturbineId, Function.identity(), (key1, key2) -> key2));
|
|
@@ -198,12 +233,14 @@ public class SingleAnalysisService {
|
|
|
|
|
|
private Map<String, ProEconEquipmentInfoDay4> queryEquipmentInfoDay4ByWt(String wtId, Date recordDate) {
|
|
|
|
|
|
-
|
|
|
- List<ProEconEquipmentInfoDay4> iostls= proEconEquipmentInfoDay4Service.list()
|
|
|
- .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
- && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
+ .eq("windturbine_id",wtId);
|
|
|
+ List<ProEconEquipmentInfoDay4> iostls= proEconEquipmentInfoDay4Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
+// && i.getRecordDate().compareTo(recordDate) == 0
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
//List转map
|
|
|
Map<String, ProEconEquipmentInfoDay4> iostmap=iostls.stream().
|
|
|
collect(Collectors.toMap(ProEconEquipmentInfoDay4::getWindturbineId, Function.identity(), (key1, key2) -> key2));
|
|
@@ -735,13 +772,15 @@ public class SingleAnalysisService {
|
|
|
Map<String,Map<Long,ProEconEquipmentInfoDay1>> day1map=new HashMap<>();
|
|
|
Map<String,Map<Long,ProEconEquipmentInfoDay2>> day2map=new HashMap<>();
|
|
|
|
|
|
-
|
|
|
- List<ProEconEquipmentInfoDay1> wtday1ls = proEconEquipmentInfoDay1Service.list()
|
|
|
- .stream().filter(i->i.getWindturbineId() !=null && i.getWindturbineId().equals(wtId)
|
|
|
- && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
|
|
|
- && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("windturbine_id",wtId).ge("record_date",beginDate)
|
|
|
+ .le("record_date",endDate);
|
|
|
+ List<ProEconEquipmentInfoDay1> wtday1ls = proEconEquipmentInfoDay1Service.list(queryWrapper);
|
|
|
+// .stream().filter(i->i.getWindturbineId() !=null && i.getWindturbineId().equals(wtId)
|
|
|
+// && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
|
|
|
+// && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
if(!wtday1ls.isEmpty())
|
|
|
{
|
|
|
for(ProEconEquipmentInfoDay1 wtday1:wtday1ls)
|
|
@@ -759,12 +798,15 @@ public class SingleAnalysisService {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- List<ProEconEquipmentInfoDay2> wtday2ls = proEconEquipmentInfoDay2Service.list()
|
|
|
- .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
- && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
|
|
|
- && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("windturbine_id",wtId).ge("record_date",beginDate)
|
|
|
+ .le("record_date",endDate);
|
|
|
+ List<ProEconEquipmentInfoDay2> wtday2ls = proEconEquipmentInfoDay2Service.list(queryWrapper2);
|
|
|
+// .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
+// && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
|
|
|
+// && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
if(!wtday2ls.isEmpty())
|
|
|
{
|
|
|
for(ProEconEquipmentInfoDay2 wtday2:wtday2ls)
|
|
@@ -782,12 +824,15 @@ public class SingleAnalysisService {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- List<ProEconEquipmentInfoDay4> wtday4ls = proEconEquipmentInfoDay4Service.list()
|
|
|
- .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
- && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
|
|
|
- && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper4 = new QueryWrapper<>();
|
|
|
+ queryWrapper4.eq("windturbine_id",wtId).ge("record_date",beginDate)
|
|
|
+ .le("record_date",endDate);
|
|
|
+ List<ProEconEquipmentInfoDay4> wtday4ls = proEconEquipmentInfoDay4Service.list(queryWrapper4);
|
|
|
+// .stream().filter(i->i.getWindturbineId().equals(wtId)
|
|
|
+// && ( i.getRecordDate().compareTo(beginDate)==0 || i.getRecordDate().after(beginDate))
|
|
|
+// && (i.getRecordDate().compareTo(endDate)==0 || i.getRecordDate().before(endDate))
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
ProBasicEquipment wt = CacheContext.wtmap.get(wtId);
|
|
|
ProBasicPowerstation wp = CacheContext.wpmap.get(wt.getWindpowerstationId());
|
|
|
|