|
@@ -1,5 +1,6 @@
|
|
|
package com.gyee.generation.service;//package com.gyee.generation.service;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.gyee.common.model.StringUtils;
|
|
|
import com.gyee.generation.init.CacheContext;
|
|
|
import com.gyee.generation.model.auto.*;
|
|
@@ -40,11 +41,14 @@ public class WindPowerInfo4Service {
|
|
|
*/
|
|
|
public void calRegionInfoDay(Date recordDate) {
|
|
|
|
|
|
- List<ProEconPowerstationInfoDay4> wpinfodayls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
-// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
- && i.getLocation().equals(Location.cp.getValue()))
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.cp.getValue());
|
|
|
+ List<ProEconPowerstationInfoDay4> wpinfodayls = proEconPowerstationInfoDay4Service.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
+//// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
+// && i.getLocation().equals(Location.cp.getValue()))
|
|
|
+// .collect(Collectors.toList());
|
|
|
if (!wpinfodayls.isEmpty()) {
|
|
|
|
|
|
Map<String, Map<String, List<ProEconPowerstationInfoDay4>>> rgmap = new HashMap<>();
|
|
@@ -88,10 +92,13 @@ public class WindPowerInfo4Service {
|
|
|
|
|
|
|
|
|
//判断是否有重复记录,先删除重复记录
|
|
|
- List<String> idls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
-// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
- && i.getLocation().equals(Location.rg.getValue())).map(ProEconPowerstationInfoDay4::getId)
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.rg.getValue());
|
|
|
+ List<String> idls = proEconPowerstationInfoDay4Service.list(queryWrapper2).stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
+//// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
+// && i.getLocation().equals(Location.rg.getValue()))
|
|
|
+ .map(ProEconPowerstationInfoDay4::getId)
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
if (idls.size() > 0) {
|
|
@@ -166,11 +173,14 @@ public class WindPowerInfo4Service {
|
|
|
*/
|
|
|
public void calCompanyInfoDay(Date recordDate) {
|
|
|
|
|
|
- List<ProEconPowerstationInfoDay4> wpinfodayls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
-// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
- && i.getLocation().equals(Location.wp.getValue()))
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.wp.getValue());
|
|
|
+ List<ProEconPowerstationInfoDay4> wpinfodayls = proEconPowerstationInfoDay4Service.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
+//// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
+// && i.getLocation().equals(Location.wp.getValue()))
|
|
|
+// .collect(Collectors.toList());
|
|
|
if (!wpinfodayls.isEmpty()) {
|
|
|
|
|
|
Map<String, Map<String, List<ProEconPowerstationInfoDay4>>> cpmap = new HashMap<>();
|
|
@@ -212,10 +222,13 @@ public class WindPowerInfo4Service {
|
|
|
|
|
|
|
|
|
//判断是否有重复记录,先删除重复记录
|
|
|
- List<String> idls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
-// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
- && i.getLocation().equals(Location.cp.getValue())).map(ProEconPowerstationInfoDay4::getId)
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.cp.getValue());
|
|
|
+ List<String> idls = proEconPowerstationInfoDay4Service.list(queryWrapper2).stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
+//// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
+// && i.getLocation().equals(Location.cp.getValue()))
|
|
|
+ .map(ProEconPowerstationInfoDay4::getId)
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
if (idls.size() > 0) {
|
|
@@ -412,10 +425,13 @@ public class WindPowerInfo4Service {
|
|
|
|
|
|
|
|
|
//判断是否有重复记录,先删除重复记录
|
|
|
- List<String> idls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
- && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
- && i.getLocation().equals(Location.wp.getValue())).map(ProEconPowerstationInfoDay4::getId)
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(recordDate)).eq("location",Location.wp.getValue());
|
|
|
+ List<String> idls = proEconPowerstationInfoDay4Service.list(queryWrapper).stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
+// && CacheContext.wpmap.containsKey(i.getWindpowerstationId())
|
|
|
+// && i.getLocation().equals(Location.wp.getValue()))
|
|
|
+ .map(ProEconPowerstationInfoDay4::getId)
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
if (idls.size() > 0) {
|
|
@@ -445,12 +461,17 @@ public class WindPowerInfo4Service {
|
|
|
//获得当日设备统计2表数据
|
|
|
ProEconPowerstationInfoDay2 pepid2 = null;
|
|
|
List<ProEconPowerstationInfoDay2> pepid2ls;
|
|
|
- pepid2ls = proEconPowerstationInfoDay2Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.wp.getValue())
|
|
|
- && i.getWindpowerstationId().equals(wp.getId())
|
|
|
-
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("windpowerstation_id",wp.getId())
|
|
|
+ .eq("location",Location.wp.getValue());
|
|
|
+ pepid2ls = proEconPowerstationInfoDay2Service.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.wp.getValue())
|
|
|
+// && i.getWindpowerstationId().equals(wp.getId())
|
|
|
+//
|
|
|
+// ).collect(Collectors.toList());
|
|
|
|
|
|
if (!pepid2ls.isEmpty()) {
|
|
|
pepid2 = pepid2ls.get(0);
|
|
@@ -458,14 +479,18 @@ public class WindPowerInfo4Service {
|
|
|
//获得当日设备统计3表数据
|
|
|
ProEconPowerstationInfoDay3 pepid3 = null;
|
|
|
List<ProEconPowerstationInfoDay3> pepid3ls;
|
|
|
- pepid3ls = proEconPowerstationInfoDay3Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.wp.getValue())
|
|
|
- && i.getWindpowerstationId().equals(wp.getId())
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay3> queryWrapper3 = new QueryWrapper<>();
|
|
|
+ queryWrapper3.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("windpowerstation_id",wp.getId())
|
|
|
+ .eq("location",Location.wp.getValue());
|
|
|
+ pepid3ls = proEconPowerstationInfoDay3Service.list(queryWrapper3);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.wp.getValue())
|
|
|
+// && i.getWindpowerstationId().equals(wp.getId())
|
|
|
+//
|
|
|
+// ).collect(Collectors.toList());
|
|
|
|
|
|
if (!pepid3ls.isEmpty()) {
|
|
|
pepid3 = pepid3ls.get(0);
|
|
@@ -473,13 +498,18 @@ public class WindPowerInfo4Service {
|
|
|
//昨日的统计结果
|
|
|
cl.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
if (cl.get(Calendar.DAY_OF_MONTH) != 1) {
|
|
|
- pepidls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.wp.getValue())
|
|
|
- && i.getWindpowerstationId().equals(wp.getId())
|
|
|
-
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper4 = new QueryWrapper<>();
|
|
|
+ queryWrapper4.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("windpowerstation_id",wp.getId())
|
|
|
+ .eq("location",Location.wp.getValue());
|
|
|
+ pepidls = proEconPowerstationInfoDay4Service.list(queryWrapper4);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.wp.getValue())
|
|
|
+// && i.getWindpowerstationId().equals(wp.getId())
|
|
|
+//
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
|
|
@@ -509,10 +539,14 @@ public class WindPowerInfo4Service {
|
|
|
Date begin = DateUtils.truncate(c.getTime());
|
|
|
|
|
|
//判断是否有重复记录,先删除重复记录
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay1> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(recordDate))
|
|
|
+ .eq("location",Location.pj.getValue());
|
|
|
List<String> idls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
- && CacheContext.pjmap.containsKey(i.getProjectId())
|
|
|
- && i.getLocation().equals(Location.pj.getValue())).map(ProEconPowerstationInfoDay4::getId)
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
+// && CacheContext.pjmap.containsKey(i.getProjectId())
|
|
|
+// && i.getLocation().equals(Location.pj.getValue()))
|
|
|
+ .map(ProEconPowerstationInfoDay4::getId)
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
if (idls.size() > 0) {
|
|
@@ -546,12 +580,17 @@ public class WindPowerInfo4Service {
|
|
|
//获得当日设备统计2表数据
|
|
|
ProEconPowerstationInfoDay2 pepid2 = null;
|
|
|
List<ProEconPowerstationInfoDay2> pepid2ls;
|
|
|
- pepid2ls = proEconPowerstationInfoDay2Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.pj.getValue())
|
|
|
- && i.getProjectId().equals(pj.getId())
|
|
|
-
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("location",Location.pj.getValue())
|
|
|
+ .eq("project_id",pj.getId());
|
|
|
+ pepid2ls = proEconPowerstationInfoDay2Service.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.pj.getValue())
|
|
|
+// && i.getProjectId().equals(pj.getId())
|
|
|
+//
|
|
|
+// ).collect(Collectors.toList());
|
|
|
|
|
|
if (!pepid2ls.isEmpty()) {
|
|
|
pepid2 = pepid2ls.get(0);
|
|
@@ -559,12 +598,17 @@ public class WindPowerInfo4Service {
|
|
|
//获得当日设备统计3表数据
|
|
|
ProEconPowerstationInfoDay3 pepid3 = null;
|
|
|
List<ProEconPowerstationInfoDay3> pepid3ls;
|
|
|
- pepid3ls = proEconPowerstationInfoDay3Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.pj.getValue())
|
|
|
- && i.getProjectId().equals(pj.getId())
|
|
|
-
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay3> queryWrapper3 = new QueryWrapper<>();
|
|
|
+ queryWrapper3.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("location",Location.pj.getValue())
|
|
|
+ .eq("project_id",pj.getId());
|
|
|
+ pepid3ls = proEconPowerstationInfoDay3Service.list(queryWrapper3);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.pj.getValue())
|
|
|
+// && i.getProjectId().equals(pj.getId())
|
|
|
+//
|
|
|
+// ).collect(Collectors.toList());
|
|
|
|
|
|
if (!pepid3ls.isEmpty()) {
|
|
|
pepid3 = pepid3ls.get(0);
|
|
@@ -574,13 +618,18 @@ public class WindPowerInfo4Service {
|
|
|
//昨日的统计结果
|
|
|
cl.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
if (cl.get(Calendar.DAY_OF_MONTH) != 1) {
|
|
|
- pepidls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.pj.getValue())
|
|
|
- && i.getProjectId().equals(pj.getId())
|
|
|
-
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper4 = new QueryWrapper<>();
|
|
|
+ queryWrapper4.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("location",Location.pj.getValue())
|
|
|
+ .eq("project_id",pj.getId());
|
|
|
+ pepidls = proEconPowerstationInfoDay4Service.list(queryWrapper4);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.pj.getValue())
|
|
|
+// && i.getProjectId().equals(pj.getId())
|
|
|
+//
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
|
|
@@ -609,10 +658,14 @@ public class WindPowerInfo4Service {
|
|
|
Date begin = DateUtils.truncate(c.getTime());
|
|
|
|
|
|
//判断是否有重复记录,先删除重复记录
|
|
|
- List<String> idls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
- && CacheContext.lnmap.containsKey(i.getLineId())
|
|
|
- && i.getLocation().equals(Location.ln.getValue())).map(ProEconPowerstationInfoDay4::getId)
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(recordDate))
|
|
|
+ .eq("location",Location.ln.getValue());
|
|
|
+ List<String> idls = proEconPowerstationInfoDay4Service.list(queryWrapper).stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(recordDate)) == 0
|
|
|
+// && CacheContext.lnmap.containsKey(i.getLineId())
|
|
|
+// && i.getLocation().equals(Location.ln.getValue()))
|
|
|
+ .map(ProEconPowerstationInfoDay4::getId)
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
if (idls.size() > 0) {
|
|
@@ -651,12 +704,17 @@ public class WindPowerInfo4Service {
|
|
|
//获得当日设备统计2表数据
|
|
|
ProEconPowerstationInfoDay2 pepid2 = null;
|
|
|
List<ProEconPowerstationInfoDay2> pepid2ls;
|
|
|
- pepid2ls = proEconPowerstationInfoDay2Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.ln.getValue())
|
|
|
- && i.getLineId().equals(ln.getId())
|
|
|
-
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay2> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("location",Location.ln.getValue())
|
|
|
+ .eq("line_id",ln.getId());
|
|
|
+ pepid2ls = proEconPowerstationInfoDay2Service.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.ln.getValue())
|
|
|
+// && i.getLineId().equals(ln.getId())
|
|
|
+//
|
|
|
+// ).collect(Collectors.toList());
|
|
|
|
|
|
if (!pepid2ls.isEmpty()) {
|
|
|
pepid2 = pepid2ls.get(0);
|
|
@@ -664,12 +722,17 @@ public class WindPowerInfo4Service {
|
|
|
//获得当日设备统计3表数据
|
|
|
ProEconPowerstationInfoDay3 pepid3 = null;
|
|
|
List<ProEconPowerstationInfoDay3> pepid3ls;
|
|
|
- pepid3ls = proEconPowerstationInfoDay3Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.ln.getValue())
|
|
|
- && i.getLineId().equals(ln.getId())
|
|
|
-
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay3> queryWrapper3 = new QueryWrapper<>();
|
|
|
+ queryWrapper3.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("location",Location.ln.getValue())
|
|
|
+ .eq("line_id",ln.getId());
|
|
|
+ pepid3ls = proEconPowerstationInfoDay3Service.list(queryWrapper3);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.ln.getValue())
|
|
|
+// && i.getLineId().equals(ln.getId())
|
|
|
+//
|
|
|
+// ).collect(Collectors.toList());
|
|
|
|
|
|
if (!pepid3ls.isEmpty()) {
|
|
|
pepid3 = pepid3ls.get(0);
|
|
@@ -677,13 +740,18 @@ public class WindPowerInfo4Service {
|
|
|
//昨日的统计结果
|
|
|
cl.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
if (cl.get(Calendar.DAY_OF_MONTH) != 1) {
|
|
|
- pepidls = proEconPowerstationInfoDay4Service.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
- && i.getLocation().equals(Location.ln.getValue())
|
|
|
- && i.getLineId().equals(ln.getId())
|
|
|
-
|
|
|
- )
|
|
|
- .collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay4> queryWrapper4 = new QueryWrapper<>();
|
|
|
+ queryWrapper4.eq("record_date",DateUtils.truncate(cl.getTime()))
|
|
|
+ .eq("location",Location.ln.getValue())
|
|
|
+ .eq("line_id",ln.getId());
|
|
|
+ pepidls = proEconPowerstationInfoDay4Service.list(queryWrapper4);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(DateUtils.truncate(cl.getTime())) == 0
|
|
|
+// && i.getLocation().equals(Location.ln.getValue())
|
|
|
+// && i.getLineId().equals(ln.getId())
|
|
|
+//
|
|
|
+// )
|
|
|
+// .collect(Collectors.toList());
|
|
|
}
|
|
|
|
|
|
|
|
@@ -737,9 +805,13 @@ public class WindPowerInfo4Service {
|
|
|
switch (types) {
|
|
|
case "0":
|
|
|
//日场站统计
|
|
|
- List<ProEconStateTransitionRates> pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(begin) == 0 && i.getWindpwoerId().equals(wt.getWindpowerstationId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconStateTransitionRates> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(begin))
|
|
|
+ .eq("windpwoer_id",wt.getWindpowerstationId());
|
|
|
+ List<ProEconStateTransitionRates> pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(begin) == 0 && i.getWindpwoerId().equals(wt.getWindpowerstationId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
DoubleSummaryStatistics timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -775,9 +847,13 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setRfwjsl(100.0);
|
|
|
}
|
|
|
- List<ProEconFaultLiminatedefects> peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i -> i.getDateTime().compareTo(begin) == 0 && i.getWindpowerstationId().equals(wt.getWindpowerstationId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconFaultLiminatedefects> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("date_time",DateUtils.truncate(begin))
|
|
|
+ .eq("windpowerstation_id",wt.getWindpowerstationId());
|
|
|
+ List<ProEconFaultLiminatedefects> peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getDateTime().compareTo(begin) == 0 && i.getWindpowerstationId().equals(wt.getWindpowerstationId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
DoubleSummaryStatistics right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -798,9 +874,13 @@ public class WindPowerInfo4Service {
|
|
|
//日场站统计
|
|
|
case "1":
|
|
|
//日工程统计
|
|
|
- pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(begin) == 0 && i.getProjectId().equals(wt.getProjectId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(begin))
|
|
|
+ .eq("project_id",wt.getProjectId());
|
|
|
+ pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(begin) == 0 && i.getProjectId().equals(wt.getProjectId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -836,9 +916,13 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setRfwjsl(100.0);
|
|
|
}
|
|
|
- peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i -> i.getDateTime().compareTo(begin) == 0 && i.getProjectId().equals(wt.getProjectId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("date_time",DateUtils.truncate(begin))
|
|
|
+ .eq("project_id",wt.getProjectId());
|
|
|
+ peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getDateTime().compareTo(begin) == 0 && i.getProjectId().equals(wt.getProjectId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -859,9 +943,13 @@ public class WindPowerInfo4Service {
|
|
|
//日工程统计
|
|
|
case "2":
|
|
|
//日线路统计
|
|
|
- pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i -> i.getRecordDate().compareTo(begin) == 0 && i.getLineId().equals(wt.getLineId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date",DateUtils.truncate(begin))
|
|
|
+ .eq("line_id",wt.getLineId());
|
|
|
+ pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getRecordDate().compareTo(begin) == 0 && i.getLineId().equals(wt.getLineId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -897,9 +985,14 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setRfwjsl(100.0);
|
|
|
}
|
|
|
- peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i -> i.getDateTime().compareTo(begin) == 0 && i.getLineId().equals(wt.getLineId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.eq("date_time",DateUtils.truncate(begin))
|
|
|
+ .eq("line_id",wt.getLineId());
|
|
|
+
|
|
|
+ peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i -> i.getDateTime().compareTo(begin) == 0 && i.getLineId().equals(wt.getLineId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -976,12 +1069,16 @@ public class WindPowerInfo4Service {
|
|
|
switch (types) {
|
|
|
case "0":
|
|
|
//月场站统计
|
|
|
- List<ProEconStateTransitionRates> pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getRecordDate().compareTo(monthbegin) == 0 || i.getRecordDate().after(monthbegin))
|
|
|
- && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
- && i.getWindpwoerId().equals(wt.getWindpowerstationId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+
|
|
|
+ QueryWrapper<ProEconStateTransitionRates> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.ge("record_date",monthbegin).le("record_date",end).eq("windpwoer_id",wt.getWindpowerstationId());
|
|
|
+ List<ProEconStateTransitionRates> pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getRecordDate().compareTo(monthbegin) == 0 || i.getRecordDate().after(monthbegin))
|
|
|
+// && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
+// && i.getWindpwoerId().equals(wt.getWindpowerstationId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
DoubleSummaryStatistics timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -1017,12 +1114,15 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setYfwjsl(100.0);
|
|
|
}
|
|
|
- List<ProEconFaultLiminatedefects> peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getDateTime().compareTo(monthbegin) == 0 || i.getDateTime().after(monthbegin))
|
|
|
- && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
- && i.getWindpowerstationId().equals(wt.getWindpowerstationId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconFaultLiminatedefects> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.ge("date_time",monthbegin).le("date_time",end).eq("windpowerstation_id",wt.getWindpowerstationId());
|
|
|
+ List<ProEconFaultLiminatedefects> peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getDateTime().compareTo(monthbegin) == 0 || i.getDateTime().after(monthbegin))
|
|
|
+// && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
+// && i.getWindpowerstationId().equals(wt.getWindpowerstationId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
DoubleSummaryStatistics right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -1043,12 +1143,16 @@ public class WindPowerInfo4Service {
|
|
|
//月场站统计
|
|
|
case "1":
|
|
|
//月工程统计
|
|
|
- pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getRecordDate().compareTo(monthbegin) == 0 || i.getRecordDate().after(monthbegin))
|
|
|
- && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
- && i.getProjectId().equals(wt.getProjectId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+
|
|
|
+ queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.ge("record_date",monthbegin).le("record_date",end).eq("project_id",wt.getProjectId());
|
|
|
+ pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getRecordDate().compareTo(monthbegin) == 0 || i.getRecordDate().after(monthbegin))
|
|
|
+// && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
+// && i.getProjectId().equals(wt.getProjectId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -1084,12 +1188,15 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setYfwjsl(100.0);
|
|
|
}
|
|
|
- peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getDateTime().compareTo(monthbegin) == 0 || i.getDateTime().after(monthbegin))
|
|
|
- && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
- && i.getProjectId().equals(wt.getProjectId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.ge("date_time",monthbegin).le("date_time",end).eq("project_id",wt.getProjectId());
|
|
|
+ peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getDateTime().compareTo(monthbegin) == 0 || i.getDateTime().after(monthbegin))
|
|
|
+// && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
+// && i.getProjectId().equals(wt.getProjectId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -1110,12 +1217,15 @@ public class WindPowerInfo4Service {
|
|
|
//月工程统计
|
|
|
case "2":
|
|
|
//月线路统计
|
|
|
- pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getRecordDate().compareTo(monthbegin) == 0 || i.getRecordDate().after(monthbegin))
|
|
|
- && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
- && i.getLineId().equals(wt.getLineId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.ge("record_date",monthbegin).le("record_date",end).eq("line_id",wt.getLineId());
|
|
|
+ pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getRecordDate().compareTo(monthbegin) == 0 || i.getRecordDate().after(monthbegin))
|
|
|
+// && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
+// && i.getLineId().equals(wt.getLineId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -1151,12 +1261,15 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setYfwjsl(100.0);
|
|
|
}
|
|
|
- peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getDateTime().compareTo(monthbegin) == 0 || i.getDateTime().after(monthbegin))
|
|
|
- && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
- && i.getLineId().equals(wt.getLineId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.ge("date_time",monthbegin).le("date_time",end).eq("line_Id",wt.getLineId());
|
|
|
+ peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getDateTime().compareTo(monthbegin) == 0 || i.getDateTime().after(monthbegin))
|
|
|
+// && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
+// && i.getLineId().equals(wt.getLineId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -1235,12 +1348,15 @@ public class WindPowerInfo4Service {
|
|
|
switch (types) {
|
|
|
case "0":
|
|
|
//年场站统计
|
|
|
- List<ProEconStateTransitionRates> pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getRecordDate().compareTo(yearbegin) == 0 || i.getRecordDate().after(yearbegin))
|
|
|
- && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
- && i.getWindpwoerId().equals(wt.getWindpowerstationId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ QueryWrapper<ProEconStateTransitionRates> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.ge("record_date",yearbegin).le("record_date",end).eq("windpwoer_id",wt.getWindpowerstationId());
|
|
|
+ List<ProEconStateTransitionRates> pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getRecordDate().compareTo(yearbegin) == 0 || i.getRecordDate().after(yearbegin))
|
|
|
+// && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
+// && i.getWindpwoerId().equals(wt.getWindpowerstationId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
DoubleSummaryStatistics timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -1276,12 +1392,16 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setNfwjsl(100.0);
|
|
|
}
|
|
|
- List<ProEconFaultLiminatedefects> peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getDateTime().compareTo(yearbegin) == 0 || i.getDateTime().after(yearbegin))
|
|
|
- && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
- && i.getWindpowerstationId().equals(wt.getWindpowerstationId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+
|
|
|
+ QueryWrapper<ProEconFaultLiminatedefects> queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.ge("date_time",yearbegin).le("date_time",end).eq("windpowerstation_id",wt.getWindpowerstationId());
|
|
|
+ List<ProEconFaultLiminatedefects> peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getDateTime().compareTo(yearbegin) == 0 || i.getDateTime().after(yearbegin))
|
|
|
+// && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
+// && i.getWindpowerstationId().equals(wt.getWindpowerstationId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
DoubleSummaryStatistics right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -1302,12 +1422,15 @@ public class WindPowerInfo4Service {
|
|
|
//年场站统计
|
|
|
case "1":
|
|
|
//年工程统计
|
|
|
- pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getRecordDate().compareTo(yearbegin) == 0 || i.getRecordDate().after(yearbegin))
|
|
|
- && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
- && i.getProjectId().equals(wt.getProjectId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.ge("record_date",yearbegin).le("record_date",end).eq("windpwoer_id",wt.getWindpowerstationId());
|
|
|
+ pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getRecordDate().compareTo(yearbegin) == 0 || i.getRecordDate().after(yearbegin))
|
|
|
+// && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
+// && i.getProjectId().equals(wt.getProjectId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -1343,12 +1466,16 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setNfwjsl(100.0);
|
|
|
}
|
|
|
- peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getDateTime().compareTo(yearbegin) == 0 || i.getDateTime().after(yearbegin))
|
|
|
- && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
- && i.getProjectId().equals(wt.getProjectId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+
|
|
|
+ queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.ge("date_time",yearbegin).le("date_time",end).eq("project_id",wt.getProjectId());
|
|
|
+ peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getDateTime().compareTo(yearbegin) == 0 || i.getDateTime().after(yearbegin))
|
|
|
+// && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
+// && i.getProjectId().equals(wt.getProjectId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|
|
@@ -1369,12 +1496,15 @@ public class WindPowerInfo4Service {
|
|
|
//年工程统计
|
|
|
case "2":
|
|
|
//年线路统计
|
|
|
- pestrls = proEconStateTransitionRatesService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getRecordDate().compareTo(yearbegin) == 0 || i.getRecordDate().after(yearbegin))
|
|
|
- && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
- && i.getLineId().equals(wt.getLineId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.ge("record_date",yearbegin).le("record_date",end).eq("line_id",wt.getLineId());
|
|
|
+ pestrls = proEconStateTransitionRatesService.list(queryWrapper);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getRecordDate().compareTo(yearbegin) == 0 || i.getRecordDate().after(yearbegin))
|
|
|
+// && (i.getRecordDate().compareTo(end) == 0 || i.getRecordDate().before(end))
|
|
|
+// && i.getLineId().equals(wt.getLineId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//大于3米20分钟转换及时次数
|
|
|
timerate8_summary = pestrls.stream().mapToDouble(ProEconStateTransitionRates::getTimerate8).summaryStatistics();
|
|
|
//大于3米20分钟转换及时次数合计
|
|
@@ -1410,12 +1540,15 @@ public class WindPowerInfo4Service {
|
|
|
} else {
|
|
|
pewp.setNfwjsl(100.0);
|
|
|
}
|
|
|
- peflls = proEconFaultLiminatedefectsService.list().stream()
|
|
|
- .filter(i ->
|
|
|
- (i.getDateTime().compareTo(yearbegin) == 0 || i.getDateTime().after(yearbegin))
|
|
|
- && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
- && i.getLineId().equals(wt.getLineId())
|
|
|
- ).collect(Collectors.toList());
|
|
|
+ queryWrapper2 = new QueryWrapper<>();
|
|
|
+ queryWrapper2.ge("date_time",monthbegin).le("date_time",end).eq("line_id",wt.getLineId());
|
|
|
+ peflls = proEconFaultLiminatedefectsService.list(queryWrapper2);
|
|
|
+// .stream()
|
|
|
+// .filter(i ->
|
|
|
+// (i.getDateTime().compareTo(yearbegin) == 0 || i.getDateTime().after(yearbegin))
|
|
|
+// && (i.getDateTime().compareTo(end) == 0 || i.getDateTime().before(end))
|
|
|
+// && i.getLineId().equals(wt.getLineId())
|
|
|
+// ).collect(Collectors.toList());
|
|
|
//消缺及时次数
|
|
|
right_summary = peflls.stream().mapToDouble(ProEconFaultLiminatedefects::getRightCount).summaryStatistics();
|
|
|
//消缺及时次数合计
|