|
@@ -546,6 +546,8 @@ public class StatusService {
|
|
|
|
|
|
Map<String, PointData> aivalueMap = new HashMap<>();
|
|
|
|
|
|
+ Map<String,Double> gzztMap=new HashMap<>();
|
|
|
+
|
|
|
for (ProBasicEquipment wt : wtls) {
|
|
|
|
|
|
String aiordi = modelMap.get(wt.getModelId()).getDescription();
|
|
@@ -557,6 +559,16 @@ public class StatusService {
|
|
|
aipointls.add(windturbinestatusdi.getNemCode());
|
|
|
}
|
|
|
|
|
|
+ if(wt.getModelId().contains("HW"))
|
|
|
+ {
|
|
|
+ Optional<ProBasicStatusPoint> gzzt = statusMap.get(wt.getId()).stream().filter(w -> w.getUniformCode().equals(Contant.MX004)).findFirst();
|
|
|
+ if (gzzt.isPresent()) {
|
|
|
+ ProBasicStatusPoint windturbinestatusdi = gzzt.get();
|
|
|
+ PointData po= edosUtil.getRealData(windturbinestatusdi.getNemCode());
|
|
|
+ gzztMap.put(wt.getId(),po.getPointValueInDouble());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
aiwtls.add(wt.getId());
|
|
|
if (aipointls.size() >= 3000) {
|
|
|
List<PointData> templs = edosUtil.getRealData(aipointls);
|
|
@@ -593,19 +605,19 @@ public class StatusService {
|
|
|
|
|
|
ProBasicEquipmentPoint ztcxsjPoint = equipmentPointMap.get(ContantXk.ZTCXSJ);
|
|
|
|
|
|
-
|
|
|
pointls.add(zjztPoint.getNemCode());
|
|
|
pointls.add(gpztPoint.getNemCode());
|
|
|
pointls.add(mxztPoint.getNemCode());
|
|
|
pointls.add(ztcxsjPoint.getNemCode());
|
|
|
|
|
|
-
|
|
|
if (pointls.size() >= 3000) {
|
|
|
List<PointData> templs = edosUtil.getRealData(pointls);
|
|
|
pointDatals.addAll(templs);
|
|
|
pointls = new ArrayList<>();
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
+
|
|
|
if (!pointls.isEmpty()) {
|
|
|
List<PointData> templs = edosUtil.getRealData(pointls);
|
|
|
pointDatals.addAll(templs);
|
|
@@ -716,7 +728,7 @@ public class StatusService {
|
|
|
Calendar c = Calendar.getInstance();
|
|
|
c.setTime(currentDate);
|
|
|
|
|
|
- mxstatus = getMxzt(zjzt, modelMap, aistateMap, statusMap, wt, ssgl, aivalueMap, diresultMaps);
|
|
|
+ mxstatus = getMxzt(zjzt, modelMap, aistateMap, statusMap, wt, ssgl, aivalueMap, diresultMaps,gzztMap);
|
|
|
|
|
|
}
|
|
|
|
|
@@ -1226,7 +1238,7 @@ public class StatusService {
|
|
|
|
|
|
private double getMxzt(double zjzt, Map<String, ProEconEquipmentmodel> modelMap, Map<String, Map<Integer, Integer>> aistateMap,
|
|
|
Map<String, List<ProBasicStatusPoint>> statusMap, ProBasicEquipment wt, double ssgl,
|
|
|
- Map<String, PointData> aivalueMap, Map<String, Map<String, PointData>> diresultMaps) throws Exception {
|
|
|
+ Map<String, PointData> aivalueMap, Map<String, Map<String, PointData>> diresultMaps,Map<String,Double> gzztMap) throws Exception {
|
|
|
|
|
|
double mxstatus = 2;
|
|
|
|
|
@@ -1240,8 +1252,19 @@ public class StatusService {
|
|
|
if (stateMap.containsKey(pointValueInDouble)) {
|
|
|
mxstatus = (double) stateMap.get(pointValueInDouble);
|
|
|
}
|
|
|
+
|
|
|
+ if (gzztMap.containsKey(wt.getId())) {
|
|
|
+ Double gzzt = gzztMap.get(wt.getId());
|
|
|
+
|
|
|
+ if(gzzt.doubleValue()==1 && pointValueInDouble==9)
|
|
|
+ {
|
|
|
+ mxstatus =6;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
if (wt.getId().contains("_F_")) {
|
|
|
if (mxstatus == 2 || (mxstatus == 3)) {
|
|
|
if (ssgl <= 10) {
|