|
@@ -2,13 +2,17 @@ package com.gyee.runeconomy.service;
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.gyee.runeconomy.init.CacheContext;
|
|
|
import com.gyee.runeconomy.model.auto.ProEconEquipmentDeviatPower;
|
|
|
import com.gyee.runeconomy.model.auto.ProEconEquipmentDeviatSpeed;
|
|
|
+import com.gyee.runeconomy.model.auto.ProEconEquipmentInfoDay4;
|
|
|
import com.gyee.runeconomy.model.vo.DeviatPowerVo;
|
|
|
import com.gyee.runeconomy.model.vo.DeviatSpeedVo;
|
|
|
import com.gyee.runeconomy.model.vo.DeviatValueVo;
|
|
|
+import com.gyee.runeconomy.model.vo.ProEconEquipmentInfoDay4Vo;
|
|
|
import com.gyee.runeconomy.service.auto.IProEconEquipmentDeviatPowerService;
|
|
|
import com.gyee.runeconomy.service.auto.IProEconEquipmentDeviatSpeedService;
|
|
|
+import com.gyee.runeconomy.service.auto.IProEconEquipmentInfoDay4Service;
|
|
|
import com.gyee.runeconomy.util.StringUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -26,7 +30,8 @@ public class WindDeviationService {
|
|
|
private IProEconEquipmentDeviatSpeedService proEconEquipmentDeviatSpeedService;
|
|
|
@Resource
|
|
|
private IProEconEquipmentDeviatPowerService proEconEquipmentDeviatPowerService;
|
|
|
-
|
|
|
+ @Resource
|
|
|
+ private IProEconEquipmentInfoDay4Service proEconEquipmentInfoDay4Service;
|
|
|
|
|
|
/**
|
|
|
* 保存对风偏差率描述
|
|
@@ -692,5 +697,52 @@ public class WindDeviationService {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ public List<ProEconEquipmentInfoDay4Vo> queryEquipmentInfoDay4(String wpId, String date) {
|
|
|
+
|
|
|
+ List<ProEconEquipmentInfoDay4Vo> vos = new ArrayList<>();
|
|
|
+
|
|
|
+ if(StringUtils.notEmp(wpId) && StringUtils.notEmp(date))
|
|
|
+ {
|
|
|
+
|
|
|
+ SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+
|
|
|
+ Date recordDate=null;
|
|
|
+
|
|
|
+ try {
|
|
|
+ recordDate=df.parse(date);
|
|
|
+ } catch (Exception e) {
|
|
|
+ throw new RuntimeException(e);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ List<ProEconEquipmentInfoDay4> iostls = null;
|
|
|
+ if (com.gyee.common.model.StringUtils.notEmp(wpId)) {
|
|
|
+ QueryWrapper<ProEconEquipmentInfoDay4> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("record_date", recordDate)
|
|
|
+ .eq("windpowerstation_id", wpId);
|
|
|
+
|
|
|
+ iostls = proEconEquipmentInfoDay4Service.list(queryWrapper);
|
|
|
+ }
|
|
|
+
|
|
|
+ for(ProEconEquipmentInfoDay4 day4:iostls)
|
|
|
+ {
|
|
|
+ ProEconEquipmentInfoDay4Vo vo=new ProEconEquipmentInfoDay4Vo();
|
|
|
+
|
|
|
+ vo.setWtId(day4.getWindturbineId());
|
|
|
+
|
|
|
+ if(CacheContext.wtmap.containsKey(day4.getWindturbineId()))
|
|
|
+ {
|
|
|
+ vo.setNemCode(CacheContext.wtmap.get(day4.getWindturbineId()).getNemCode());
|
|
|
+ }
|
|
|
+ vo.setY11mycqxpcl(day4.getY11mycqxpcl());
|
|
|
+ vo.setY35mqxpcl(day4.getY35mqxpcl());
|
|
|
+ vo.setY511mqxpcl(day4.getY511mqxpcl());
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ return vos;
|
|
|
+ }
|
|
|
|
|
|
}
|