|
@@ -1,5 +1,7 @@
|
|
package com.gyee.runeconomy.service.Economic;
|
|
package com.gyee.runeconomy.service.Economic;
|
|
|
|
|
|
|
|
+import cn.hutool.core.date.DateUtil;
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.gyee.common.contant.ContantXk;
|
|
import com.gyee.common.contant.ContantXk;
|
|
import com.gyee.common.model.PointData;
|
|
import com.gyee.common.model.PointData;
|
|
import com.gyee.runeconomy.dto.*;
|
|
import com.gyee.runeconomy.dto.*;
|
|
@@ -29,11 +31,14 @@ public class EconomicService {
|
|
private IProEconPowerstationInfoDay1Service proEconPowerstationInfoDay1Service;//场站五损电量
|
|
private IProEconPowerstationInfoDay1Service proEconPowerstationInfoDay1Service;//场站五损电量
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
- private IProEconPowerstationInfoDay7Service proEconPowerstationInfoDay7Service;//光伏
|
|
|
|
|
|
+ private IProEconEquipmentInfoDay1Service proEconEquipmentInfoDay1Service;//光伏
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private IProEconFaultFaultService proEconFaultFaultService;
|
|
private IProEconFaultFaultService proEconFaultFaultService;
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private IProEconCleaningInputService proEconCleaningInputService;
|
|
|
|
+
|
|
@Resource
|
|
@Resource
|
|
private IProBasicPowerstationPointService proBasicPowerstationPointService;
|
|
private IProBasicPowerstationPointService proBasicPowerstationPointService;
|
|
|
|
|
|
@@ -629,4 +634,77 @@ public class EconomicService {
|
|
return vos;
|
|
return vos;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ public List<Tmelinessvo> cleaningrate(String companys, String wpids, String type, String starttime, String endtime, String dateType, String windturbineids) throws Exception {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ Date beginDate = DateUtils.parseDate1(starttime);
|
|
|
|
+ Date endDate = DateUtils.parseDate1(endtime);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ List<Tmelinessvo> vos = new ArrayList<>();
|
|
|
|
+
|
|
|
|
+ List<MaxVo> qwtpj = new ArrayList<>();
|
|
|
|
+ List<Glqx> hwtpj = new ArrayList<>();
|
|
|
|
+
|
|
|
|
+ List<ProEconCleaningInput> getlist = proEconCleaningInputService.getlist(beginDate,endDate);
|
|
|
|
+
|
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay1> qw = new QueryWrapper<>();
|
|
|
|
+ qw.between("record_date", DateUtil.offsetDay(beginDate,-5), beginDate);
|
|
|
|
+ qw.like("windpowerstation_id",wpids);
|
|
|
|
+ List<ProEconEquipmentInfoDay1> qwt = proEconEquipmentInfoDay1Service.list(qw);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay1> hw = new QueryWrapper<>();
|
|
|
|
+ hw.between("record_date", beginDate,DateUtil.offsetDay(beginDate,+5));
|
|
|
|
+ hw.like("windpowerstation_id",wpids);
|
|
|
|
+ List<ProEconEquipmentInfoDay1> hwt = proEconEquipmentInfoDay1Service.list(hw);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ for (ProEconEquipmentInfoDay1 q : qwt)
|
|
|
|
+ {
|
|
|
|
+ MaxVo mvo = new MaxVo();
|
|
|
|
+ mvo.setId(q.getWindturbineId());
|
|
|
|
+ mvo.setAves(q.getRpjgl());
|
|
|
|
+ qwtpj.add(mvo);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ for (ProEconEquipmentInfoDay1 h : hwt)
|
|
|
|
+ {
|
|
|
|
+ Glqx gvo = new Glqx();
|
|
|
|
+ gvo.setId(h.getWindturbineId());
|
|
|
|
+ gvo.setSjgl(h.getRpjgl());
|
|
|
|
+ hwtpj.add(gvo);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ Map<String,List<MaxVo>> qwtls = qwtpj.stream().collect(Collectors.groupingBy(MaxVo::getId));
|
|
|
|
+
|
|
|
|
+ Map<String,List<Glqx>> hwtls = hwtpj.stream().collect(Collectors.groupingBy(Glqx::getId));
|
|
|
|
+ List<ProBasicOrganizeEquipment> collect = CacheContext.organizeEquipmentList.stream().filter(wt1 -> wpids.contains(wt1.getWindpowerstationId())).collect(Collectors.toList());
|
|
|
|
+
|
|
|
|
+ for (Map.Entry<String, List<MaxVo>> entry : qwtls.entrySet()) {
|
|
|
|
+ String qkey = entry.getKey(); //设备
|
|
|
|
+ List<MaxVo> value = entry.getValue();
|
|
|
|
+
|
|
|
|
+ double qv = value.stream().mapToDouble(MaxVo::getAves).average().orElse(0);
|
|
|
|
+
|
|
|
|
+ double hv = hwtls.get(qkey).stream().mapToDouble(Glqx::getSjgl).average().orElse(0);
|
|
|
|
+
|
|
|
|
+ Tmelinessvo vo = new Tmelinessvo();
|
|
|
|
+ vo.setWtid(qkey);
|
|
|
|
+
|
|
|
|
+ for (ProBasicOrganizeEquipment wt : collect){
|
|
|
|
+ if (qkey.equals(wt.getWindturbineId()))
|
|
|
|
+ vo.setWtname(wt.getAname());
|
|
|
|
+ }
|
|
|
|
+ vo.setFrequency(qv);
|
|
|
|
+ vo.setZfrequency(hv);
|
|
|
|
+ vo.setJsl((qv/hv)*100);
|
|
|
|
+ vos.add(vo);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return vos;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|