소스 검색

首页弹窗修改,光伏电量计算修改

wangb@gyee-china.com 1 년 전
부모
커밋
8f9f4c32fa

+ 12 - 6
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/controller/monitor/MonitorController.java

@@ -4,7 +4,9 @@ import com.gyee.runeconomy.dto.AjaxResult;
 import com.gyee.runeconomy.dto.DataVo;
 import com.gyee.runeconomy.dto.PowercurveVo;
 import com.gyee.runeconomy.dto.ProjectplanVo;
+import com.gyee.runeconomy.service.monitor.GroupRealtimeService;
 import com.gyee.runeconomy.service.monitor.MonitorService;
+import com.gyee.runeconomy.service.monitor.ProjectPlanService;
 import com.gyee.runeconomy.util.StringUtils;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiImplicitParam;
@@ -32,7 +34,11 @@ import java.util.Map;
 public class MonitorController {
     @Autowired
     private MonitorService monitorService;
+    @Autowired
+    private ProjectPlanService planService;
 
+    @Autowired
+    private GroupRealtimeService groupRealtimeService;
     @GetMapping("/monitor")
     @ResponseBody
     @ApiOperation(value = "首页", notes = "首页")
@@ -73,7 +79,7 @@ public class MonitorController {
 
     }
 
-    @GetMapping("Realtime")
+    @GetMapping("/Realtime")
     @ResponseBody
     @ApiOperation(value = "实时数据", notes = "实时数据")
     @ApiImplicitParams({
@@ -95,7 +101,7 @@ public class MonitorController {
 
     }
 
-    @GetMapping("Utilizationhours")
+    @GetMapping("/Utilizationhours")
     @ResponseBody
     @ApiOperation(value = "利用小时", notes = "利用小时")
     @ApiImplicitParams({
@@ -117,7 +123,7 @@ public class MonitorController {
 
     }
 
-    @GetMapping("Planproject")
+    @GetMapping("/Planproject")
     @ResponseBody
     @ApiOperation(value = "计划电量", notes = "计划电量")
     @ApiImplicitParams({
@@ -128,7 +134,7 @@ public class MonitorController {
 
         List<ProjectplanVo> resultList = new ArrayList<>();
         if (StringUtils.notEmp(wpId)) {
-            resultList = monitorService.planvalue(wpId, timetype);
+            resultList = planService.planvalue(wpId, timetype);
         }
 
         if (null != resultList) {
@@ -159,7 +165,7 @@ public class MonitorController {
 
     }
 
-    @GetMapping("GroupRealtime")
+    @GetMapping("/GroupRealtime")
     @ResponseBody
     @ApiOperation(value = "首页实时数据", notes = "首页实时数据")
     @ApiImplicitParams({
@@ -170,7 +176,7 @@ public class MonitorController {
 
         List<DataVo> resultList = new ArrayList<>();
         if (StringUtils.notEmp(wpId)) {
-            resultList = monitorService.GroupRealtimevalue(wpId, uniformCode);
+            resultList = groupRealtimeService.GroupRealtimevalue(wpId, uniformCode);
         }
 
         if (null != resultList) {

+ 10 - 10
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/dto/CoulometricVo.java

@@ -3,9 +3,9 @@ package com.gyee.runeconomy.dto;
 public class CoulometricVo {
 
     /**
-     * 计划电量
+     * 日照强度
      */
-    private Double jhdl;
+    private Double rzqd;
 
     /**
      * 实际电量
@@ -18,10 +18,14 @@ public class CoulometricVo {
     private Double kydl;
 
     /**
-     * 小时
+     * 可研完成情况
      */
+    private Double kywcqk;
 
-    private Integer hours;
+    /**
+     * 计划电量
+     */
+    private Double jhdl;
 
     /**
      * 完成情况
@@ -29,14 +33,10 @@ public class CoulometricVo {
     private Double wcqk;
 
     /**
-     * 可研完成情况
+     * 小时
      */
-    private Double kywcqk;
 
-    /**
-     * 日照强度
-     */
-    private Double rzqd;
+    private Integer hours;
 
     /**
      * 等效发电小时

+ 2 - 2
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/service/Electricity/Electricityservice.java

@@ -378,8 +378,8 @@ public class Electricityservice {
                 if (!rzqdls.isEmpty() && rzqdls != null) {
                     byrzqdhjsum = rzqdls.get(0).getYpjfs().doubleValue();
                 }
-
-                dxxss = (bysjdlhjsum / 10000) / wpls.getJrCapacity() * ts * 24;
+                //等效发电小时数算法
+                dxxss = (bysjdlhjsum) / (wpls.getJrCapacity() * ts * 8) * ts * 24;
                 dxxsssum += StringUtils.round(dxxss,0);
             }
 

+ 199 - 0
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/service/monitor/GroupRealtimeService.java

@@ -0,0 +1,199 @@
+package com.gyee.runeconomy.service.monitor;
+
+import com.gyee.common.contant.ContantXk;
+import com.gyee.common.model.PointData;
+import com.gyee.common.util.DateUtils;
+import com.gyee.runeconomy.dto.DataVo;
+import com.gyee.runeconomy.model.auto.ProBasicPowerstationPoint;
+import com.gyee.runeconomy.service.TokenService;
+import com.gyee.runeconomy.service.auto.*;
+import com.gyee.runeconomy.util.StringUtils;
+import com.gyee.runeconomy.util.realtimesource.IEdosUtil;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.stereotype.Service;
+
+import javax.annotation.Resource;
+import java.util.*;
+
+@Service
+public class GroupRealtimeService {
+
+    private static Logger logger = LoggerFactory.getLogger(MonitorService.class);
+    @Resource
+    private IProBasicProjectPlanService proBasicProjectPlanService;
+    @Resource
+    private IProBasicPowerstationPointService proBasicPowerstationPointService;
+    @Resource
+    private IProBasicEquipmentPointService proBasicEquipmentPointService;
+    @Resource
+    private IProBasicCompanyService proBasicCompanyService;
+    @Resource
+    private IProEconTargetdataService proEconTargetdataService;
+    @Resource
+    private IProEconTargetdataFristService proEconTargetdataFristService;
+
+    @Resource
+    private IProBasicPowerPointService powerPointService;
+
+    @Resource
+    private IProEconPowerstationInfoDay5Service proEconPowerstationInfoDay5Service;
+
+    private final String QS = "0";
+    private final String FD = "-1";
+    private final String GF = "-2";
+
+    @Resource
+    private IEdosUtil edosUtil;
+    Map<String, Object> map = new HashMap<>();
+    @Resource
+    private TokenService tokenService;
+
+
+    //首页实时数据
+    public List<DataVo> GroupRealtimevalue(String wpId, String uniformCode) throws Exception {
+
+        Date beginDate = com.gyee.common.util.DateUtils.getSamedayZero();   //当日零点
+        Date endDate = com.gyee.common.util.DateUtils.getCurrentDate();   //当前时间
+        List<DataVo> vos = new ArrayList<DataVo>();
+
+        int day = DateUtils.getCurrentHour();//4
+
+//        for (int i = 0; i < day; i++) {
+//            DataVo vo = new DataVo();
+//            vo.setValue1(0.0); //实际功率
+//            vo.setValue2(0.0); //风电实际功率
+//            vo.setValue3(0.0); //光伏实际功率
+//            vo.setValue4(0.0); //实时风速
+//            vo.setValue5(0.0); //理论功率
+//            vo.setValue6(0.0); //平均光照度
+//            vo.setValue7(0.0); //风能利用率
+//            vo.setHours(i);  //时间戳
+//            vo.setName(wpId);
+//            vos.add(vo);
+//        }
+
+
+
+//        if (uniformCode.contains("SSZGL")) {
+//            List<PointData> sjglls = edosUtil.getHistoryDatasSnap(sjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+//            double temp1 = 0;
+//            for (int i = 0; i < sjglls.size(); i++) {
+//
+//                DataVo vo = new DataVo();
+//                temp1 = sjglls.get(i).getPointValueInDouble();
+//                vo.setValue1(StringUtils.round(temp1 / 1000, 2));
+//                vo.setTime(sjglls.get(i).getPointTime());
+//                vos.add(vo);
+//            }
+//        }
+        if (wpId.contains(QS)) {
+            ProBasicPowerstationPoint sjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
+            ProBasicPowerstationPoint fdsjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId.substring(0, wpId.indexOf("0")) + "-1", ContantXk.SSZGL);
+            ProBasicPowerstationPoint gfsjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId.substring(0, wpId.indexOf("0")) + "-2", ContantXk.SSZGL);
+
+            if (uniformCode.contains("SSZGL")) {
+                List<PointData> fdsjglls = edosUtil.getHistoryDatasSnap(fdsjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+                List<PointData> sjglls = edosUtil.getHistoryDatasSnap(sjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+                List<PointData> gfsjglls = edosUtil.getHistoryDatasSnap(gfsjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+
+                double temp1 = 0;
+                double temp2 = 0;
+                double temp3 = 0;
+                for (int i = 0; i < fdsjglls.size(); i++) {
+                    DataVo vo = new DataVo();
+                    vo.setTime(sjglls.get(i).getPointTime());
+                    temp1 = sjglls.get(i).getPointValueInDouble();
+                    temp2 = fdsjglls.get(i).getPointValueInDouble();
+                    temp3 = gfsjglls.get(i).getPointValueInDouble();
+                    vo.setValue1(StringUtils.round(temp1 / 1000, 2));
+                    vo.setValue2(StringUtils.round(temp2 / 1000, 2));
+                    vo.setValue3(StringUtils.round(temp3 / 1000, 2));
+                    vos.add(vo);
+                }
+            }
+        }else if (uniformCode.contains("SSZGL")){
+            ProBasicPowerstationPoint sjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
+            List<PointData> sjglls = edosUtil.getHistoryDatasSnap(sjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+            double temp1 = 0;
+
+            for (int i = 0; i < sjglls.size(); i++) {
+                DataVo vo = new DataVo();
+                vo.setTime(sjglls.get(i).getPointTime());
+                temp1 = sjglls.get(i).getPointValueInDouble();
+                vo.setValue1(StringUtils.round(temp1 / 1000, 2));
+                vos.add(vo);
+            }
+        }
+//        if (wpId.contains(QS)) {
+//            ProBasicPowerstationPoint gfsjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId.substring(0, wpId.indexOf("0")) + "-2", ContantXk.SSZGL);
+//            if (uniformCode.contains("SSZGL")) {
+//                List<PointData> gfsjglls = edosUtil.getHistoryDatasSnap(gfsjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+//                double temp3 = 0;
+//                for (int i = 0; i < gfsjglls.size(); i++) {
+//                    DataVo vo = new DataVo();
+//                    temp3 = gfsjglls.get(i).getPointValueInDouble();
+//                    vo.setValue3(StringUtils.round(temp3 / 1000, 2));
+//                    vos.add(vo);
+//                }
+//            }
+//        }
+
+        ProBasicPowerstationPoint ssfs = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSPJFS);
+        ProBasicPowerstationPoint llgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.TPOINT_WP_YCGL); //预测功率
+//        ProBasicPowerstationPoint sjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
+        ProBasicPowerstationPoint gzzs = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.RPJGZD);
+        ProBasicPowerstationPoint fnlyl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.FNLYL);
+
+        if (uniformCode.contains("SSPJFS")) {
+
+            List<PointData> ssfsls = edosUtil.getHistoryDatasSnap(ssfs, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+            double temp4 = 0;
+            for (int i = 0; i < ssfsls.size(); i++) {
+                DataVo vo = new DataVo();
+                temp4 = ssfsls.get(i).getPointValueInDouble();
+                vo.setValue4(StringUtils.round(temp4, 2));
+                vo.setTime(ssfsls.get(i).getPointTime());
+                vos.add(vo);
+            }
+        }
+
+        if (uniformCode.contains("SSZLLGL")) {
+            List<PointData> llglls = edosUtil.getHistoryDatasSnap(llgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+            double temp5 = 0;
+            for (int i = 0; i < llglls.size(); i++) {
+                DataVo vo = new DataVo();
+                temp5 = llglls.get(i).getPointValueInDouble();
+                vo.setValue5(StringUtils.round(temp5 / 1000, 2));
+                vo.setTime(llglls.get(i).getPointTime());
+                vos.add(vo);
+            }
+        }
+
+
+        if (uniformCode.contains("RPJGZD")) {
+            List<PointData> gzzsls = edosUtil.getHistoryDatasSnap(gzzs, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+            double temp6 = 0;
+            for (int i = 0; i < gzzsls.size(); i++) {
+                DataVo vo = new DataVo();
+                temp6 = gzzsls.get(i).getPointValueInDouble();
+                vo.setValue6(StringUtils.round(temp6, 2));
+                vo.setTime(gzzsls.get(i).getPointTime());
+                vos.add(vo);
+            }
+        }
+        if (uniformCode.contains("FNLYL")) {
+            List<PointData> fnlylls = edosUtil.getHistoryDatasSnap(fnlyl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 900L);
+            double temp7 = 0;
+            for (int i = 0; i < fnlylls.size(); i++) {
+                DataVo vo = new DataVo();
+                temp7 = fnlylls.get(i).getPointValueInDouble();
+                vo.setValue7(StringUtils.round(temp7, 2));
+                vo.setTime(fnlylls.get(i).getPointTime());
+                vos.add(vo);
+            }
+        }
+
+        return vos;
+    }
+}

+ 22 - 318
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/service/monitor/MonitorService.java

@@ -7,9 +7,7 @@ import com.gyee.common.model.PointData;
 import com.gyee.common.util.DateUtils;
 import com.gyee.common.util.DoubleUtils;
 import com.gyee.common.util.SortUtils;
-import com.gyee.runeconomy.dto.DataVo;
 import com.gyee.runeconomy.dto.PowercurveVo;
-import com.gyee.runeconomy.dto.ProjectplanVo;
 import com.gyee.runeconomy.init.CacheContext;
 import com.gyee.runeconomy.model.auto.*;
 import com.gyee.runeconomy.service.TokenService;
@@ -1821,200 +1819,6 @@ public class MonitorService {
     }
 
 
-    //计划电量
-    public List<ProjectplanVo> planvalue(String wpId, String timetype) throws Exception {
-
-        List<ProjectplanVo> vos = new ArrayList<ProjectplanVo>();
-        if (wpId.endsWith(QS) || wpId.endsWith(FD) || wpId.endsWith(GF) || CacheContext.wpmapls.containsKey(wpId)) {
-
-            List<ProBasicPowerstation> wplist = new ArrayList<>();
-            if (CacheContext.wpmapls.containsKey(wpId)) {
-                wplist = CacheContext.wpmapls.get(wpId);
-            }
-            HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
-            List<ProBasicPowerstation> wplsToken = tokenService.getWpls(request);
-            for (ProBasicPowerstation wp : wplsToken) {
-                if (wpId.contains(FD)) {
-                    if (wp.getId().endsWith("FDC_STA")) {
-                        wplist.add(wp);
-                    }
-                } else if (wpId.contains(GF)) {
-                    if (wp.getId().endsWith("GDC_STA")) {
-                        wplist.add(wp);
-                    }
-                } else if (wpId.contains(QS)) {
-                    wplist.add(wp);
-                }
-            }
-
-            Map<String, ProBasicPowerstationPoint> wtpointmap = null;
-            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap = CacheContext.wppointmap;
-            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap1 = CacheContext.companypointmap;
-            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap2 = CacheContext.regionpointmap;
-            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap3 = CacheContext.grouppointmap;
-
-            if (pointwpmap.containsKey(wpId)) {
-                wtpointmap = pointwpmap.get(wpId);
-            } else if (pointwpmap1.containsKey(wpId)) {
-                wtpointmap = pointwpmap1.get(wpId);
-            } else if (pointwpmap2.containsKey(wpId)) {
-                wtpointmap = pointwpmap2.get(wpId);
-            } else if (pointwpmap3.containsKey(wpId)) {
-                wtpointmap = pointwpmap3.get(wpId);
-            }
-
-            String month = wtpointmap.get(ContantXk.YFDL).getNemCode();
-            String rfdl = wtpointmap.get(ContantXk.RFDL).getNemCode();
-            String nfdl = wtpointmap.get(ContantXk.NFDL).getNemCode();
-
-            if (timetype.contains("year")) {
-                Calendar cal = Calendar.getInstance();
-                int currentyear = cal.get(Calendar.YEAR);
-                int twoyear = cal.get(Calendar.YEAR) - 1; //2021
-                int threeyear = cal.get(Calendar.YEAR) - 2;
-
-
-                Calendar twoyearsj = Calendar.getInstance();
-                twoyearsj.add(Calendar.YEAR, -2);
-                Date threeDate = twoyearsj.getTime();
-
-                Calendar oneyearsj = Calendar.getInstance();
-                oneyearsj.add(Calendar.YEAR, -1);
-                Date twoDate = oneyearsj.getTime();
-
-                Calendar currentyearsj = Calendar.getInstance();
-                currentyearsj.add(Calendar.YEAR, 0);
-                Date currentDate = currentyearsj.getTime();
-
-                for (int i = 0; i < 3; i++) {
-                    ProjectplanVo vo = new ProjectplanVo();
-                    vo.setJhdl(0.0);
-                    vo.setSjdl(0.0);
-                    vo.setHours(i);
-                    vos.add(vo);
-                }
-
-                double bnjhdlsum = 0.0;
-                double bnsjdlsum = 0.0;
-
-                double twojhdlsum = 0.0;
-                double twosjdlsum = 0.0;
-
-                double threejhdlsum = 0.0;
-                double threesjdlsum = 0.0;
-
-                List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getList(String.valueOf(currentyear)); //本年所有集合
-                List<ProBasicProjectPlan> twols = proBasicProjectPlanService.getList(String.valueOf(twoyear));
-                List<ProBasicProjectPlan> threels = proBasicProjectPlanService.getList(String.valueOf(threeyear));
-
-                if (!wplist.isEmpty()) {
-                    for (ProBasicPowerstation wpls : wplist) {
-
-                        //本年所有集合
-                        List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
-                        //去年所有集合
-                        List<ProBasicProjectPlan> twojh = twols.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
-                        //前年所有集合
-                        List<ProBasicProjectPlan> threejh = threels.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
-
-                        bnjhdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //本年计划电量合
-
-                        twojhdlsum += twojh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //去年计划电量合
-
-                        threejhdlsum += threejh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //前年计划电量合
-
-                    }
-
-//                    Map<String, ProBasicPowerstationPoint> wtpointmap1 = pointwpmap.get(wpls.getId());
-//                    String yearsjdl = wtpointmap1.get(ContantXk.NFDL).getNemCode();
-
-                    PointData bnsjdl = edosUtil.getHistMatrix(nfdl, currentDate.getTime() / 1000);
-                    PointData qnsjdl = edosUtil.getHistMatrix(nfdl, twoDate.getTime() / 1000);
-                    PointData threensjdl = edosUtil.getHistMatrix(nfdl, threeDate.getTime() / 1000);
-
-                    threesjdlsum += threensjdl.getPointValueInDouble();
-                    twosjdlsum += qnsjdl.getPointValueInDouble();
-                    bnsjdlsum += bnsjdl.getPointValueInDouble();
-
-                    vos.get(0).setJhdl(StringUtils.round(bnjhdlsum, 2));
-                    vos.get(1).setJhdl(StringUtils.round(twojhdlsum, 2));
-                    vos.get(2).setJhdl(StringUtils.round(threejhdlsum, 2));
-
-                    vos.get(0).setSjdl(StringUtils.round(bnsjdlsum / 10000, 2));
-                    vos.get(1).setSjdl(StringUtils.round(twosjdlsum / 10000, 2));
-                    vos.get(2).setSjdl(StringUtils.round(threesjdlsum / 10000, 2));
-
-                }
-            }
-
-            if (timetype.contains("month")) {
-
-                if (!wplist.isEmpty()) {
-                    int day = 0;
-                    int month2 = DateUtils.getMonth(new Date());//4
-                    DateUtils.getMonthLast(new Date());
-                    Date date = DateUtils.getCurrentDate();
-
-                    for (int i = month2; i > 0; i--) {
-                        double bnjhdlsum = 0.0;
-                        day = i;
-                        for (ProBasicPowerstation wpls : wplist) {
-                            List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList(String.valueOf(day)); //本月所有集合
-                            //本年所有集合
-                            List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
-                            bnjhdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //本月计划电量合
-                        }
-                        ProjectplanVo vo = new ProjectplanVo();
-                        vo.setJhdl(StringUtils.round(bnjhdlsum, 2));
-                        vo.setHours(i);
-
-                        PointData data = edosUtil.getSectionData(month, DateUtils.getEndOfDay(DateUtils.getMonthLast(date)).getTime());
-                        vo.setSjdl(DoubleUtils.keepPrecision(data.getPointValueInDouble() / 10000, 2));
-                        date = DateUtils.addMonths(date, -1);
-                        vos.add(vo);
-                        SortUtils.sort(vos, "hours", SortUtils.ASC);
-                    }
-                }
-            }
-            if (timetype.contains("day")) {
-                if (!wplist.isEmpty()) {
-                    int day = 0;
-                    Calendar cal = Calendar.getInstance();
-                    int dom = cal.get(Calendar.DAY_OF_MONTH);
-                    int month2 = DateUtils.getMonth(new Date());
-
-                    Date date = DateUtils.getCurrentDate(); //当前时间
-
-                    double byjhdlsum = 0.0;
-                    double bysjdlsum = 0.0;
-                    for (ProBasicPowerstation wpls : wplist) {
-                        List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList(String.valueOf(month2)); //本月所有集合
-                        //本年所有集合
-                        List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
-                        byjhdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //本月计划电量合
-                        bysjdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getOutageHours).sum(); //本月实际电量合
-                    }
-                    for (int i = dom; i > 0; i--) {
-                        ProjectplanVo vo = new ProjectplanVo();
-                        vo.setJhdl(StringUtils.round(byjhdlsum / 30, 2));
-                        PointData data = edosUtil.getSectionData(rfdl, DateUtils.getEndOfDay(date).getTime());
-                        vo.setSjdl(DoubleUtils.keepPrecision(data.getPointValueInDouble() / 10000, 2));
-                        date = DateUtils.addDays(date, -1);
-
-                        vo.setHours(i);
-                        vos.add(vo);
-                        SortUtils.sort(vos, "hours", SortUtils.ASC);
-                    }
-
-                }
-            }
-
-
-        }
-        return vos;
-
-    }
-
     public Map plan(String wpId) throws Exception {
 
         Map<String, Object> map = new HashMap<>();
@@ -2071,17 +1875,17 @@ public class MonitorService {
             double gf_y_sjdl = 0;
             double gf_n_sjdl = 0;
 
-            BigDecimal fd_r_sjdl1 = null;
-            BigDecimal fd_y_sjdl1 = null;
-            BigDecimal fd_n_sjdl1 = null;
-            BigDecimal gf_r_sjdl1 = null;
-            BigDecimal gf_y_sjdl1 = null;
-            BigDecimal gf_n_sjdl1 = null;
+            BigDecimal fd_r_sjdl1 = BigDecimal.valueOf(0);
+            BigDecimal fd_y_sjdl1 = BigDecimal.valueOf(0);
+            BigDecimal fd_n_sjdl1 = BigDecimal.valueOf(0);
+            BigDecimal gf_r_sjdl1 = BigDecimal.valueOf(0);
+            BigDecimal gf_y_sjdl1 = BigDecimal.valueOf(0);
+            BigDecimal gf_n_sjdl1 = BigDecimal.valueOf(0);
 
-            BigDecimal fdnf =null;
-            BigDecimal fdyf =null;
-            BigDecimal gfnf =null;
-            BigDecimal gfyf =null;
+            BigDecimal fdnf = BigDecimal.valueOf(0);
+            BigDecimal fdyf = BigDecimal.valueOf(0);
+            BigDecimal gfnf = BigDecimal.valueOf(0);
+            BigDecimal gfyf = BigDecimal.valueOf(0);
 
             // 获取当前日期 暂时
             Date currentDate5 = new Date();
@@ -2292,12 +2096,18 @@ public class MonitorService {
                     }
                 }
 
-                if (fdnf == null || fdyf == null || gfyf == null || gfnf == null){
-                    fdnf = BigDecimal.valueOf(100);
-                    fdyf = BigDecimal.valueOf(100);
-                    gfyf = BigDecimal.valueOf(100);
-                    gfnf = BigDecimal.valueOf(100);
-                }
+//                if (wpId.endsWith("-1") && fdnf == null && fdyf == null){
+//                    fdnf = BigDecimal.valueOf(100);
+//                    fdyf = BigDecimal.valueOf(100);
+//                }else if (wpId.endsWith("-2") && gfnf == null && gfyf == null){
+//                    gfnf = BigDecimal.valueOf(100);
+//                    gfyf = BigDecimal.valueOf(100);
+//                } else if (wpId.endsWith("0") && fdnf == null && fdyf == null && gfnf == null && gfyf == null ) {
+//                    fdnf = BigDecimal.valueOf(100);
+//                    fdyf = BigDecimal.valueOf(100);
+//                    gfnf = BigDecimal.valueOf(100);
+//                    gfyf = BigDecimal.valueOf(100);
+//                }
 //                for ( ProEconPowerstationInfoDay5 fdsj : qwt2){
 //                    if (fdsj.getForeignKeyId().equals("SXJ_KGDL_FLFD_ZGS0")){
 //                        fd_r_sjdl1 = fdsj.getRfdldb();
@@ -2467,110 +2277,4 @@ public class MonitorService {
         }
         return map;
     }
-
-    /**********************************************计划电量统计**********************************************************/
-
-    /**********************************************计划电量统计**********************************************************/
-
-    //首页实时数据
-    public List<DataVo> GroupRealtimevalue(String wpId, String uniformCode) throws Exception {
-
-        Date beginDate = com.gyee.common.util.DateUtils.getSamedayZero();   //当日零点
-        Date endDate = com.gyee.common.util.DateUtils.getCurrentDate();   //当前时间
-        List<DataVo> vos = new ArrayList<DataVo>();
-
-        int day = DateUtils.getCurrentHour();//4
-
-        for (int i = 0; i < day; i++) {
-            DataVo vo = new DataVo();
-            vo.setValue1(0.0); //实际功率
-            vo.setValue2(0.0); //风电实际功率
-            vo.setValue3(0.0); //光伏实际功率
-            vo.setValue4(0.0); //实时风速
-            vo.setValue5(0.0); //理论功率
-            vo.setValue6(0.0); //平均光照度
-            vo.setValue7(0.0); //风能利用率
-            vo.setHours(i);  //时间戳
-            vo.setName(wpId);
-            vos.add(vo);
-        }
-
-        ProBasicPowerstationPoint sjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
-
-        if (uniformCode.contains("SSZGL")) {
-            List<PointData> sjglls = edosUtil.getHistoryDatasSnap(sjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
-            double temp1 = 0;
-            for (int i = 0; i < sjglls.size(); i++) {
-                temp1 = sjglls.get(i).getPointValueInDouble();
-                vos.get(i).setValue1(StringUtils.round(temp1 / 1000, 2));
-            }
-        }
-        if (wpId.contains(QS)) {
-            ProBasicPowerstationPoint fdsjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId.substring(0, wpId.indexOf("0")) + "-1", ContantXk.SSZGL);
-            if (uniformCode.contains("SSZGL")) {
-                List<PointData> fdsjglls = edosUtil.getHistoryDatasSnap(fdsjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
-                double temp2 = 0;
-                for (int i = 0; i < fdsjglls.size(); i++) {
-                    temp2 = fdsjglls.get(i).getPointValueInDouble();
-                    vos.get(i).setValue2(StringUtils.round(temp2 / 1000, 2));
-                }
-            }
-        }
-        if (wpId.contains(QS)) {
-            ProBasicPowerstationPoint gfsjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId.substring(0, wpId.indexOf("0")) + "-2", ContantXk.SSZGL);
-            if (uniformCode.contains("SSZGL")) {
-                List<PointData> gfsjglls = edosUtil.getHistoryDatasSnap(gfsjgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
-                double temp3 = 0;
-                for (int i = 0; i < gfsjglls.size(); i++) {
-                    temp3 = gfsjglls.get(i).getPointValueInDouble();
-                    vos.get(i).setValue3(StringUtils.round(temp3 / 1000, 2));
-                }
-            }
-        }
-
-        ProBasicPowerstationPoint ssfs = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSPJFS);
-        ProBasicPowerstationPoint llgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.TPOINT_WP_YCGL); //预测功率
-//        ProBasicPowerstationPoint sjgl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.SSZGL);
-        ProBasicPowerstationPoint gzzs = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.RPJGZD);
-        ProBasicPowerstationPoint fnlyl = proBasicPowerstationPointService.getPowerstationPoint(wpId, ContantXk.FNLYL);
-
-        if (uniformCode.contains("SSPJFS")) {
-
-            List<PointData> ssfsls = edosUtil.getHistoryDatasSnap(ssfs, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
-            double temp4 = 0;
-            for (int i = 0; i < ssfsls.size(); i++) {
-                temp4 = ssfsls.get(i).getPointValueInDouble();
-                vos.get(i).setValue4(StringUtils.round(temp4, 2));
-            }
-        }
-
-        if (uniformCode.contains("SSZLLGL")) {
-            List<PointData> llglls = edosUtil.getHistoryDatasSnap(llgl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
-            double temp5 = 0;
-            for (int i = 0; i < llglls.size(); i++) {
-                temp5 = llglls.get(i).getPointValueInDouble();
-                vos.get(i).setValue5(StringUtils.round(temp5 / 1000, 2));
-            }
-        }
-
-
-        if (uniformCode.contains("RPJGZD")) {
-            List<PointData> gzzsls = edosUtil.getHistoryDatasSnap(gzzs, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
-            double temp6 = 0;
-            for (int i = 0; i < gzzsls.size(); i++) {
-                temp6 = gzzsls.get(i).getPointValueInDouble();
-                vos.get(i).setValue6(StringUtils.round(temp6 / 1000, 2));
-            }
-        }
-        if (uniformCode.contains("FNLYL")) {
-            List<PointData> fnlylls = edosUtil.getHistoryDatasSnap(fnlyl, beginDate.getTime() / 1000, endDate.getTime() / 1000, null, 3600L);
-            double temp7 = 0;
-            for (int i = 0; i < fnlylls.size(); i++) {
-                temp7 = fnlylls.get(i).getPointValueInDouble();
-                vos.get(i).setValue7(StringUtils.round(temp7, 2));
-            }
-        }
-
-        return vos;
-    }
 }

+ 485 - 0
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/service/monitor/ProjectPlanService.java

@@ -0,0 +1,485 @@
+package com.gyee.runeconomy.service.monitor;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.gyee.common.contant.ContantXk;
+import com.gyee.common.model.PointData;
+import com.gyee.common.util.DateUtils;
+import com.gyee.common.util.DoubleUtils;
+import com.gyee.common.util.SortUtils;
+import com.gyee.runeconomy.dto.ProjectplanVo;
+import com.gyee.runeconomy.init.CacheContext;
+import com.gyee.runeconomy.model.auto.ProBasicPowerstation;
+import com.gyee.runeconomy.model.auto.ProBasicPowerstationPoint;
+import com.gyee.runeconomy.model.auto.ProBasicProjectPlan;
+import com.gyee.runeconomy.model.auto.ProEconPowerstationInfoDay5;
+import com.gyee.runeconomy.service.TokenService;
+import com.gyee.runeconomy.service.auto.*;
+import com.gyee.runeconomy.util.StringUtils;
+import com.gyee.runeconomy.util.realtimesource.IEdosUtil;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.stereotype.Service;
+import org.springframework.web.context.request.RequestContextHolder;
+import org.springframework.web.context.request.ServletRequestAttributes;
+
+import javax.annotation.Resource;
+import javax.servlet.http.HttpServletRequest;
+import java.math.BigDecimal;
+import java.util.*;
+import java.util.stream.Collectors;
+
+@Service
+public class ProjectPlanService {
+    private static Logger logger = LoggerFactory.getLogger(MonitorService.class);
+    @Resource
+    private IProBasicProjectPlanService proBasicProjectPlanService;
+    @Resource
+    private IProBasicPowerstationPointService proBasicPowerstationPointService;
+    @Resource
+    private IProBasicEquipmentPointService proBasicEquipmentPointService;
+    @Resource
+    private IProBasicCompanyService proBasicCompanyService;
+    @Resource
+    private IProEconTargetdataService proEconTargetdataService;
+    @Resource
+    private IProEconTargetdataFristService proEconTargetdataFristService;
+
+    @Resource
+    private IProBasicPowerPointService powerPointService;
+
+    @Resource
+    private IProEconPowerstationInfoDay5Service proEconPowerstationInfoDay5Service;
+
+    private final String QS = "0";
+    private final String FD = "-1";
+    private final String GF = "-2";
+
+    @Resource
+    private IEdosUtil edosUtil;
+    Map<String, Object> map = new HashMap<>();
+    @Resource
+    private TokenService tokenService;
+
+    //计划电量
+
+    public List<ProjectplanVo> planvalue(String wpId, String timetype) throws Exception {
+
+        List<ProjectplanVo> vos = new ArrayList<ProjectplanVo>();
+        if (wpId.endsWith(QS) || wpId.endsWith(FD) || wpId.endsWith(GF) || CacheContext.wpmapls.containsKey(wpId)) {
+
+            List<ProBasicPowerstation> wplist = new ArrayList<>();
+            if (CacheContext.wpmapls.containsKey(wpId)) {
+                wplist = CacheContext.wpmapls.get(wpId);
+            }
+            HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
+            List<ProBasicPowerstation> wplsToken = tokenService.getWpls(request);
+            for (ProBasicPowerstation wp : wplsToken) {
+                if (wpId.contains(FD)) {
+                    if (wp.getId().endsWith("FDC_STA")) {
+                        wplist.add(wp);
+                    }
+                } else if (wpId.contains(GF)) {
+                    if (wp.getId().endsWith("GDC_STA")) {
+                        wplist.add(wp);
+                    }
+                } else if (wpId.contains(QS)) {
+                    wplist.add(wp);
+                }
+            }
+
+            // 获取当前日期 暂时
+            Date currentDate5 = new Date();
+
+            // 创建 Calendar 对象,并设置为当前日期
+            Calendar calendar5 = Calendar.getInstance();
+            calendar5.setTime(currentDate5);
+
+            // 设置 beginDate 为前一天的早上六点
+            calendar5.add(Calendar.DAY_OF_MONTH, -1);
+            calendar5.set(Calendar.HOUR_OF_DAY, 6);
+            calendar5.set(Calendar.MINUTE, 0);
+            calendar5.set(Calendar.SECOND, 0);
+            calendar5.set(Calendar.MILLISECOND, 0);
+            Date beginDate = calendar5.getTime();
+
+            // 设置 endDate 为当天的23点59分59秒
+            calendar5.set(Calendar.HOUR_OF_DAY, 23);
+            calendar5.set(Calendar.MINUTE, 59);
+            calendar5.set(Calendar.SECOND, 59);
+            calendar5.set(Calendar.MILLISECOND, 999);
+            Date endDate = calendar5.getTime();
+
+
+            // 获取去年最后一天的早上6点的时间
+            Calendar calendar7 = Calendar.getInstance();
+            calendar7.add(Calendar.YEAR, -1); // 减去1年
+            calendar7.set(Calendar.MONTH, Calendar.DECEMBER); // 设置月份为12月
+            calendar7.set(Calendar.DAY_OF_MONTH, 31); // 设置天数为31日
+            calendar7.set(Calendar.HOUR_OF_DAY, 6); // 设置小时数为6时
+            calendar7.set(Calendar.MINUTE, 0); // 设置分钟数为0分
+            calendar7.set(Calendar.SECOND, 0); // 设置秒数为0秒
+            // 获取开始时间
+            Date qnbeginDate = calendar7.getTime();
+
+            // 获取去年最后一天晚上23点59分59秒的时间
+            Calendar calendar8 = Calendar.getInstance();
+            calendar8.add(Calendar.YEAR, -1); // 减去1年
+            calendar8.set(Calendar.MONTH, Calendar.DECEMBER); // 设置月份为12月
+            calendar8.set(Calendar.DAY_OF_MONTH, 31); // 设置天数为31日
+            calendar8.set(Calendar.HOUR_OF_DAY, 23); // 设置小时数为23时
+            calendar8.set(Calendar.MINUTE, 59); // 设置分钟数为59分
+            calendar8.set(Calendar.SECOND, 59); // 设置秒数为59秒
+            // 获取结束时间
+            Date qnendDate = calendar8.getTime();
+
+            // 获取前年最后一天的早上6点的时间
+            Calendar calendar9 = Calendar.getInstance();
+            calendar9.add(Calendar.YEAR, -2); // 减去1年
+            calendar9.set(Calendar.MONTH, Calendar.DECEMBER); // 设置月份为12月
+            calendar9.set(Calendar.DAY_OF_MONTH, 31); // 设置天数为31日
+            calendar9.set(Calendar.HOUR_OF_DAY, 6); // 设置小时数为6时
+            calendar9.set(Calendar.MINUTE, 0); // 设置分钟数为0分
+            calendar9.set(Calendar.SECOND, 0); // 设置秒数为0秒
+            // 获取开始时间
+            Date qynbeginDate = calendar9.getTime();
+
+            // 获取去年最后一天晚上23点59分59秒的时间
+            Calendar calendar10 = Calendar.getInstance();
+            calendar10.add(Calendar.YEAR, -2); // 减去1年
+            calendar10.set(Calendar.MONTH, Calendar.DECEMBER); // 设置月份为12月
+            calendar10.set(Calendar.DAY_OF_MONTH, 31); // 设置天数为31日
+            calendar10.set(Calendar.HOUR_OF_DAY, 23); // 设置小时数为23时
+            calendar10.set(Calendar.MINUTE, 59); // 设置分钟数为59分
+            calendar10.set(Calendar.SECOND, 59); // 设置秒数为59秒
+            // 获取结束时间
+            Date qynendDate = calendar10.getTime();
+
+            Map<String, ProBasicPowerstationPoint> wtpointmap = null;
+            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap = CacheContext.wppointmap;
+            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap1 = CacheContext.companypointmap;
+            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap2 = CacheContext.regionpointmap;
+            Map<String, Map<String, ProBasicPowerstationPoint>> pointwpmap3 = CacheContext.grouppointmap;
+
+            if (pointwpmap.containsKey(wpId)) {
+                wtpointmap = pointwpmap.get(wpId);
+            } else if (pointwpmap1.containsKey(wpId)) {
+                wtpointmap = pointwpmap1.get(wpId);
+            } else if (pointwpmap2.containsKey(wpId)) {
+                wtpointmap = pointwpmap2.get(wpId);
+            } else if (pointwpmap3.containsKey(wpId)) {
+                wtpointmap = pointwpmap3.get(wpId);
+            }
+
+            String month = wtpointmap.get(ContantXk.YFDL).getNemCode();
+            String rfdl = wtpointmap.get(ContantXk.RFDL).getNemCode();
+            String nfdl = wtpointmap.get(ContantXk.NFDL).getNemCode();
+
+            if (timetype.contains("year")) {
+                Calendar cal = Calendar.getInstance();
+                int currentyear = cal.get(Calendar.YEAR);
+                int twoyear = cal.get(Calendar.YEAR) - 1; //2021
+                int threeyear = cal.get(Calendar.YEAR) - 2;
+
+
+                Calendar twoyearsj = Calendar.getInstance();
+                twoyearsj.add(Calendar.YEAR, -2);
+                Date threeDate = twoyearsj.getTime();
+
+                Calendar oneyearsj = Calendar.getInstance();
+                oneyearsj.add(Calendar.YEAR, -1);
+                Date twoDate = oneyearsj.getTime();
+
+                Calendar currentyearsj = Calendar.getInstance();
+                currentyearsj.add(Calendar.YEAR, 0);
+                Date currentDate = currentyearsj.getTime();
+
+                for (int i = 0; i < 3; i++) {
+                    ProjectplanVo vo = new ProjectplanVo();
+                    vo.setJhdl(0.0);
+                    vo.setSjdl(0.0);
+                    vo.setHours(i);
+                    vos.add(vo);
+                }
+
+                double bnjhdlsum = 0.0;
+                BigDecimal bnsjdlsum = BigDecimal.valueOf(0.0);
+
+                double twojhdlsum = 0.0;
+                BigDecimal twosjdlsum = BigDecimal.valueOf(0.0);
+
+                double threejhdlsum = 0.0;
+                BigDecimal threesjdlsum = BigDecimal.valueOf(0.0);
+
+                List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getList(String.valueOf(currentyear)); //本年所有集合
+                List<ProBasicProjectPlan> twols = proBasicProjectPlanService.getList(String.valueOf(twoyear));
+                List<ProBasicProjectPlan> threels = proBasicProjectPlanService.getList(String.valueOf(threeyear));
+
+                List<ProEconPowerstationInfoDay5> jn = null;
+                QueryWrapper<ProEconPowerstationInfoDay5> qw3 = new QueryWrapper<>();
+                if (wpId.equals("KGDL_FGS0")){
+                    qw3.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0", "SXJ_KGDL_FLFD_ZGS0");
+                } else if (wpId.equals("KGDL_FGS-1")) {
+                    qw3.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_FLFD_ZGS0");
+                } else if (wpId.equals("KGDL_FGS-2")) {
+                    qw3.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0");
+                } else if (wpId.equals("SXJ_RGN0")) {
+                    qw3.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1", "SXJ_RGN-2");
+                } else if (wpId.equals("SXJ_RGN-1")) {
+                    qw3.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1");
+                }else if (wpId.equals("SXJ_RGN-2")) {
+                    qw3.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-2");
+                }
+                qw3.lambda().between(ProEconPowerstationInfoDay5::getRecordDate, beginDate, endDate);
+                jn = proEconPowerstationInfoDay5Service.list(qw3);
+
+                List<ProEconPowerstationInfoDay5> qn = null;
+                QueryWrapper<ProEconPowerstationInfoDay5> qw4 = new QueryWrapper<>();
+                if (wpId.equals("KGDL_FGS0")){
+                    qw4.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0", "SXJ_KGDL_FLFD_ZGS0");
+                } else if (wpId.equals("KGDL_FGS-1")) {
+                    qw4.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_FLFD_ZGS0");
+                } else if (wpId.equals("KGDL_FGS-2")) {
+                    qw4.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0");
+                } else if (wpId.equals("SXJ_RGN0")) {
+                    qw4.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1", "SXJ_RGN-2");
+                } else if (wpId.equals("SXJ_RGN-1")) {
+                    qw4.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1");
+                }else if (wpId.equals("SXJ_RGN-2")) {
+                    qw4.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-2");
+                }
+                qw4.lambda().between(ProEconPowerstationInfoDay5::getRecordDate, qnbeginDate, qnendDate);
+                qn = proEconPowerstationInfoDay5Service.list(qw4);
+
+                List<ProEconPowerstationInfoDay5> qyn = null;
+                QueryWrapper<ProEconPowerstationInfoDay5> qw5 = new QueryWrapper<>();
+                if (wpId.equals("KGDL_FGS0")){
+                    qw5.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0", "SXJ_KGDL_FLFD_ZGS0");
+                } else if (wpId.equals("KGDL_FGS-1")) {
+                    qw5.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_FLFD_ZGS0");
+                } else if (wpId.equals("KGDL_FGS-2")) {
+                    qw5.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0");
+                } else if (wpId.equals("SXJ_RGN0")) {
+                    qw5.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1", "SXJ_RGN-2");
+                } else if (wpId.equals("SXJ_RGN-1")) {
+                    qw5.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1");
+                }else if (wpId.equals("SXJ_RGN-2")) {
+                    qw5.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-2");
+                }
+                qw5.lambda().between(ProEconPowerstationInfoDay5::getRecordDate, qynbeginDate, qynendDate);
+                qyn = proEconPowerstationInfoDay5Service.list(qw5);
+
+                if (!wplist.isEmpty()) {
+                    for (ProBasicPowerstation wpls : wplist) {
+
+                        //本年所有集合
+                        List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
+                        //去年所有集合
+                        List<ProBasicProjectPlan> twojh = twols.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
+                        //前年所有集合
+                        List<ProBasicProjectPlan> threejh = threels.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
+
+                        bnjhdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //本年计划电量合
+
+                        twojhdlsum += twojh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //去年计划电量合
+
+                        threejhdlsum += threejh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //前年计划电量合
+
+                    }
+
+
+//                    PointData bnsjdl = edosUtil.getHistMatrix(nfdl, currentDate.getTime() / 1000);
+//                    PointData qnsjdl = edosUtil.getHistMatrix(nfdl, twoDate.getTime() / 1000);
+//                    PointData threensjdl = edosUtil.getHistMatrix(nfdl, threeDate.getTime() / 1000);
+//
+//                    threesjdlsum += threensjdl.getPointValueInDouble();
+//                    twosjdlsum += qnsjdl.getPointValueInDouble();
+//                    bnsjdlsum += bnsjdl.getPointValueInDouble();
+
+//                    //本年所有集合
+//                    List<ProEconPowerstationInfoDay5> sjcurrent = jn.stream().filter(wp -> wp.getForeignKeyId().equals(wpls.getId())).collect(Collectors.toList());
+//                    //去年所有集合
+//                    List<ProEconPowerstationInfoDay5> sjtwo = qn.stream().filter(wp -> wp.getForeignKeyId().equals(wpls.getId())).collect(Collectors.toList());
+//                    //前年所有集合
+//                    List<ProEconPowerstationInfoDay5> sjthree = qyn.stream().filter(wp -> wp.getForeignKeyId().equals(wpls.getId())).collect(Collectors.toList());
+//
+
+                    bnsjdlsum = jn.stream().map(ProEconPowerstationInfoDay5::getNfdldb).reduce(BigDecimal.ZERO, BigDecimal::add);
+
+                    twosjdlsum = qn.stream().map(ProEconPowerstationInfoDay5::getNfdldb).reduce(BigDecimal.ZERO, BigDecimal::add); //去年计划电量合
+
+                    threesjdlsum = qyn.stream().map(ProEconPowerstationInfoDay5::getNfdldb).reduce(BigDecimal.ZERO, BigDecimal::add); //前年计划电量合
+
+                    vos.get(0).setJhdl(StringUtils.round(bnjhdlsum, 2));
+                    vos.get(1).setJhdl(StringUtils.round(twojhdlsum, 2));
+                    vos.get(2).setJhdl(StringUtils.round(threejhdlsum, 2));
+
+                    Date date = DateUtils.getCurrentDate(); //当前时间
+                    PointData data = edosUtil.getSectionData(rfdl, DateUtils.getEndOfDay(date).getTime());
+                    Double rfdlsj = (DoubleUtils.keepPrecision(data.getPointValueInDouble() / 10000, 2));
+
+                    double bnsjdlhj = (bnsjdlsum.doubleValue() /10000) + rfdlsj;
+                    double qnsjdlhj = twosjdlsum.doubleValue() /10000;
+                    double qynsjdlhj = threesjdlsum.doubleValue() /10000;
+
+                    vos.get(0).setSjdl(StringUtils.round(bnsjdlhj, 2));
+                    vos.get(1).setSjdl(StringUtils.round(qnsjdlhj, 2));
+                    vos.get(2).setSjdl(StringUtils.round(qynsjdlhj, 2));
+
+                }
+            }
+
+            if (timetype.contains("month")) {
+
+                if (!wplist.isEmpty()) {
+                    int day = 0;
+                    int month2 = DateUtils.getMonth(new Date());//4
+                    DateUtils.getMonthLast(new Date());
+                    Date date = DateUtils.getCurrentDate();
+
+                    //如果是当前月,开始时间减一天,如果是其它月为最后一天
+                    Date dyxtsj = null;
+                    Date zqxtsj = null;
+                    //当前系统时间
+                    dyxtsj = DateUtils.today();
+                    //当前系统时间最后一天
+                    zqxtsj = DateUtils.getMonthLast(DateUtils.today());
+
+                    List<ProEconPowerstationInfoDay5> list = null;
+                    List<ProEconPowerstationInfoDay5> list1 = null;
+                    List<ProEconPowerstationInfoDay5> list2 = null;
+                    for (int i = month2; i > 0; i--) {
+                        double bnjhdlsum = 0.0;
+                        BigDecimal bnsjdlsum = BigDecimal.valueOf(0.0);
+                        BigDecimal bnsjdlsum1 = BigDecimal.valueOf(0.0);
+                        BigDecimal bnsjdlsum2 = BigDecimal.valueOf(0.0);
+                        day = i;
+                        for (ProBasicPowerstation wpls : wplist) {
+                            List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList(String.valueOf(day)); //本月所有集合
+                            //本年所有集合
+                            List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
+                            bnjhdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //本月计划电量合
+                        }
+                        ProjectplanVo vo = new ProjectplanVo();
+                        vo.setJhdl(StringUtils.round(bnjhdlsum, 2));
+                        vo.setHours(i);
+
+                        QueryWrapper<ProEconPowerstationInfoDay5> qw1 = new QueryWrapper<>();
+                        QueryWrapper<ProEconPowerstationInfoDay5> qw2 = new QueryWrapper<>();
+                        QueryWrapper<ProEconPowerstationInfoDay5> qw3 = new QueryWrapper<>();
+                        QueryWrapper<ProEconPowerstationInfoDay5> qw4 = new QueryWrapper<>();
+                        if (i==month2) {
+                            qw1.lambda().lt(ProEconPowerstationInfoDay5::getRecordDate, dyxtsj)
+                                    .ge(ProEconPowerstationInfoDay5::getRecordDate, DateUtils.getMonthFirst(dyxtsj));
+                        }else {
+                            qw1.lambda().le(ProEconPowerstationInfoDay5::getRecordDate, zqxtsj)
+                                    .ge(ProEconPowerstationInfoDay5::getRecordDate, DateUtils.getMonthFirst(zqxtsj));
+                        }
+                        if (wpId.equals("KGDL_FGS0")){
+                            qw1.lambda().in(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0", "SXJ_KGDL_FLFD_ZGS0");
+                        } else if (wpId.equals("KGDL_FGS-1")) {
+                            qw1.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_FLFD_ZGS0");
+                        } else if (wpId.equals("KGDL_FGS-2")) {
+                            qw1.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_KGDL_GFFD_ZGS0");
+                        } else if (wpId.equals("SXJ_RGN-1")) {
+                            qw1.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1");
+                        }else if (wpId.equals("SXJ_RGN-2")) {
+                            qw1.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-2");
+                        }
+                        qw1.lambda().orderByDesc(ProEconPowerstationInfoDay5::getRecordDate);
+                        qw1.last("LIMIT 1");
+                        list = proEconPowerstationInfoDay5Service.list(qw1);
+
+                        if (wpId.equals("SXJ_RGN0")) {
+                            if (i==month2) {
+                                qw2.lambda().lt(ProEconPowerstationInfoDay5::getRecordDate, dyxtsj)
+                                        .ge(ProEconPowerstationInfoDay5::getRecordDate, DateUtils.getMonthFirst(dyxtsj));
+                            }else {
+                                qw2.lambda().le(ProEconPowerstationInfoDay5::getRecordDate, zqxtsj)
+                                        .ge(ProEconPowerstationInfoDay5::getRecordDate, DateUtils.getMonthFirst(zqxtsj));
+                            }
+
+                            if (i==month2) {
+                                qw3.lambda().lt(ProEconPowerstationInfoDay5::getRecordDate, dyxtsj)
+                                        .ge(ProEconPowerstationInfoDay5::getRecordDate, DateUtils.getMonthFirst(dyxtsj));
+                            }else {
+                                qw3.lambda().le(ProEconPowerstationInfoDay5::getRecordDate, zqxtsj)
+                                        .ge(ProEconPowerstationInfoDay5::getRecordDate, DateUtils.getMonthFirst(zqxtsj));
+                            }
+                            qw2.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-1");
+                            qw2.lambda().orderByDesc(ProEconPowerstationInfoDay5::getRecordDate);
+                            qw2.last("LIMIT 1");
+
+                            qw3.lambda().eq(ProEconPowerstationInfoDay5::getForeignKeyId, "SXJ_RGN-2");
+                            qw3.lambda().orderByDesc(ProEconPowerstationInfoDay5::getRecordDate);
+                            qw3.last("LIMIT 1");
+                            list1 = proEconPowerstationInfoDay5Service.list(qw2);
+                            list2 = proEconPowerstationInfoDay5Service.list(qw3);
+                        }
+
+
+//                        PointData data = edosUtil.getSectionData(month, DateUtils.getEndOfDay(DateUtils.getMonthLast(date)).getTime());
+//                        vo.setSjdl(DoubleUtils.keepPrecision(data.getPointValueInDouble() / 10000, 2));
+
+                        if (wpId.equals("SXJ_RGN0")) {
+                            bnsjdlsum1 = list1.stream().map(ProEconPowerstationInfoDay5::getYfdldb).reduce(BigDecimal.ZERO, BigDecimal::add);
+                            bnsjdlsum2 = list2.stream().map(ProEconPowerstationInfoDay5::getYfdldb).reduce(BigDecimal.ZERO, BigDecimal::add);
+
+                            bnsjdlsum =bnsjdlsum1.add(bnsjdlsum2);
+                        }else {
+                            bnsjdlsum = list.stream().map(ProEconPowerstationInfoDay5::getYfdldb).reduce(BigDecimal.ZERO, BigDecimal::add);
+                        }
+                        Date date1 = DateUtils.getCurrentDate(); //当前时间
+                        PointData data = edosUtil.getSectionData(rfdl, DateUtils.getEndOfDay(date1).getTime());
+                        Double rfdlsj = (DoubleUtils.keepPrecision(data.getPointValueInDouble() / 10000, 2));
+                        if (i==month2) {
+                            vo.setSjdl(StringUtils.round((bnsjdlsum.doubleValue() / 10000) + rfdlsj,2));
+                        }else {
+                            vo.setSjdl(StringUtils.round(bnsjdlsum.doubleValue() / 10000,2));
+                        }
+                        date = DateUtils.addMonths(date, -1);
+                        dyxtsj = DateUtils.addMonths(dyxtsj, -1);
+                        zqxtsj = DateUtils.addMonths(zqxtsj, -1);
+                        vos.add(vo);
+                        SortUtils.sort(vos, "hours", SortUtils.ASC);
+                    }
+                }
+            }
+            if (timetype.contains("day")) {
+                if (!wplist.isEmpty()) {
+                    int day = 0;
+                    Calendar cal = Calendar.getInstance();
+                    int dom = cal.get(Calendar.DAY_OF_MONTH);
+                    int month2 = DateUtils.getMonth(new Date());
+
+                    Date date = DateUtils.getCurrentDate(); //当前时间
+
+                    double byjhdlsum = 0.0;
+                    double bysjdlsum = 0.0;
+                    for (ProBasicPowerstation wpls : wplist) {
+                        List<ProBasicProjectPlan> currentls = proBasicProjectPlanService.getmonthList(String.valueOf(month2)); //本月所有集合
+                        //本年所有集合
+                        List<ProBasicProjectPlan> currentjh = currentls.stream().filter(wp -> wp.getWindpowerstationId().equals(wpls.getId())).collect(Collectors.toList());
+                        byjhdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum(); //本月计划电量合
+                        bysjdlsum += currentjh.stream().mapToDouble(ProBasicProjectPlan::getOutageHours).sum(); //本月实际电量合
+                    }
+                    for (int i = dom; i > 0; i--) {
+                        ProjectplanVo vo = new ProjectplanVo();
+                        vo.setJhdl(StringUtils.round(byjhdlsum / 30, 2));
+                        PointData data = edosUtil.getSectionData(rfdl, DateUtils.getEndOfDay(date).getTime());
+                        vo.setSjdl(DoubleUtils.keepPrecision(data.getPointValueInDouble() / 10000, 2));
+                        date = DateUtils.addDays(date, -1);
+
+                        vo.setHours(i);
+                        vos.add(vo);
+                        SortUtils.sort(vos, "hours", SortUtils.ASC);
+                    }
+
+                }
+            }
+
+
+        }
+        return vos;
+
+    }
+}