|
@@ -49,6 +49,7 @@ public class AccessStatusService {
|
|
|
ProBasicPowerstationPoint glycpoint = powerstationPointMap.get(ContantXk.GLYCJRZT);
|
|
|
ProBasicPowerstationPoint cftpoint = powerstationPointMap.get(ContantXk.QXZJRZT);
|
|
|
ProBasicPowerstationPoint sbjrpoint = powerstationPointMap.get(ContantXk.SBJRZT);
|
|
|
+ ProBasicPowerstationPoint czztpoint = powerstationPointMap.get(ContantXk.CZZT);
|
|
|
|
|
|
ProBasicPowerstationPoint qcztPoint = powerstationPointMap.get(ContantXk.QCZT);
|
|
|
|
|
@@ -58,6 +59,7 @@ public class AccessStatusService {
|
|
|
double agczt = 0;
|
|
|
double glyczt = 0;
|
|
|
double cftzt = 0;
|
|
|
+ double czzt = 0;
|
|
|
|
|
|
double zycgl = 0;
|
|
|
Optional<ProBasicMeterPoint> swdlOptional = meterpoints.stream().filter(me -> me.getUniformCode().equals("ZXYG") && me.getMeterType().equals("出线") && me.getMeterSort().equals("主")).findFirst();
|
|
@@ -128,12 +130,16 @@ public class AccessStatusService {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
+ if (djlzt==1 || agczt==1 || glyczt==1 || fjzt==1 || cftzt==1){
|
|
|
+ czzt = 1;
|
|
|
+ }
|
|
|
resultList.add(PointUtil.createPointData(currentDate,zycgl,zycglpoint.getNemCode(),zycglpoint.getName()));
|
|
|
resultList.add(PointUtil.createPointData(currentDate,djlzt,djlpoint.getNemCode(),djlpoint.getName()));
|
|
|
resultList.add(PointUtil.createPointData(currentDate,agczt,agcpoint.getNemCode(),agcpoint.getName()));
|
|
|
resultList.add(PointUtil.createPointData(currentDate,glyczt,glycpoint.getNemCode(),glycpoint.getName()));
|
|
|
resultList.add(PointUtil.createPointData(currentDate,cftzt,cftpoint.getNemCode(),cftpoint.getName()));
|
|
|
resultList.add(PointUtil.createPointData(currentDate,fjzt,sbjrpoint.getNemCode(),sbjrpoint.getName()));
|
|
|
+ resultList.add(PointUtil.createPointData(currentDate,czzt,czztpoint.getNemCode(),czztpoint.getName()));
|
|
|
});
|
|
|
edosUtil.sendMultiPoint(resultList);
|
|
|
|