|
@@ -25,7 +25,7 @@ import java.util.stream.Collectors;
|
|
|
@Service
|
|
|
public class EquipmentInfo2Service {
|
|
|
|
|
|
-
|
|
|
+
|
|
|
@Resource
|
|
|
private IEdosUtil edosUtil;
|
|
|
|
|
@@ -39,12 +39,19 @@ public class EquipmentInfo2Service {
|
|
|
* 计算设备日信息
|
|
|
*/
|
|
|
public void calEquipmentInfoDay(Date recordDate) throws Exception {
|
|
|
- Calendar c=Calendar.getInstance();
|
|
|
+ Calendar c = Calendar.getInstance();
|
|
|
c.setTime(recordDate);
|
|
|
+ if(c.get(Calendar.MINUTE)==0)
|
|
|
+ {
|
|
|
+ c.add(Calendar.DAY_OF_MONTH,-1);
|
|
|
+ }
|
|
|
|
|
|
- Date end=c.getTime();
|
|
|
+ c.set(Calendar.HOUR_OF_DAY, 23);
|
|
|
+ c.set(Calendar.MINUTE, 59);
|
|
|
+ c.set(Calendar.SECOND, 59);
|
|
|
+ Date end = c.getTime();
|
|
|
|
|
|
- Date begin= DateUtils.truncate(c.getTime());
|
|
|
+ Date begin = DateUtils.truncate(c.getTime());
|
|
|
|
|
|
|
|
|
|
|
@@ -69,91 +76,97 @@ public class EquipmentInfo2Service {
|
|
|
|
|
|
|
|
|
|
|
|
- Map<String, ProEconEquipmentInfoDay2> pep2map=new HashMap<>();
|
|
|
- Calendar cl=Calendar.getInstance();
|
|
|
+ Map<String, ProEconEquipmentInfoDay2> pep2map = new HashMap<>();
|
|
|
+ Calendar cl = Calendar.getInstance();
|
|
|
cl.setTime(recordDate);
|
|
|
|
|
|
- if(cl.get(Calendar.DAY_OF_MONTH)!=1)
|
|
|
- {
|
|
|
- cl.add(Calendar.DAY_OF_MONTH,-1);
|
|
|
+ if (cl.get(Calendar.DAY_OF_MONTH) != 1) {
|
|
|
+ cl.add(Calendar.DAY_OF_MONTH, -1);
|
|
|
QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper2 = new QueryWrapper<>();
|
|
|
- queryWrapper2.eq("record_date",cl.getTime());
|
|
|
+ queryWrapper2.eq("record_date", cl.getTime());
|
|
|
List<ProEconEquipmentInfoDay2> pep2ls = proEconEquipmentInfoDay2Service.list(queryWrapper2);
|
|
|
- if(!pep2ls.isEmpty())
|
|
|
- {
|
|
|
- for(ProEconEquipmentInfoDay2 pep:pep2ls)
|
|
|
- {
|
|
|
- pep2map.put(pep.getWindturbineId(),pep);
|
|
|
+ if (!pep2ls.isEmpty()) {
|
|
|
+ for (ProEconEquipmentInfoDay2 pep : pep2ls) {
|
|
|
+ pep2map.put(pep.getWindturbineId(), pep);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
- List<String> wpls=new ArrayList<>();
|
|
|
- List<ProEconEquipmentInfoDay2> dayls=new ArrayList<>();
|
|
|
- final CountDownLatch latch = new CountDownLatch(CacheContext.wtls.size());
|
|
|
- for(ProBasicEquipment wt:CacheContext.wtls)
|
|
|
- {
|
|
|
- if(!wpls.contains(wt.getWindpowerstationId()))
|
|
|
- {
|
|
|
- wpls.add(wt.getWindpowerstationId());
|
|
|
- }
|
|
|
+ List<String> wpls = new ArrayList<>();
|
|
|
+ List<ProEconEquipmentInfoDay2> dayls = new ArrayList<>();
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ for (Map.Entry<String, List<ProBasicEquipment>> entry : CacheContext.wpwtmap.entrySet()) {
|
|
|
|
|
|
|
|
|
- new Thread(new EquipmentInfo2Thread(executor, wt, pep2map,
|
|
|
+ final CountDownLatch latch = new CountDownLatch(entry.getValue().size());
|
|
|
+ for (ProBasicEquipment wt : entry.getValue()) {
|
|
|
+ if (!wpls.contains(wt.getWindpowerstationId())) {
|
|
|
+ wpls.add(wt.getWindpowerstationId());
|
|
|
+ }
|
|
|
+
|
|
|
+ new Thread(new EquipmentInfo2Thread(executor, wt, pep2map,
|
|
|
recordDate, end, begin,dayls,
|
|
|
edosUtil,latch)).start();
|
|
|
- }
|
|
|
- latch.await();
|
|
|
|
|
|
+ }
|
|
|
+ latch.await();
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- c=Calendar.getInstance();
|
|
|
+ c = Calendar.getInstance();
|
|
|
c.setTime(recordDate);
|
|
|
|
|
|
|
|
|
|
|
|
QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
|
|
|
- queryWrapper.eq("record_date",recordDate);
|
|
|
- queryWrapper.in("windpowerstation_id",wpls);
|
|
|
+ queryWrapper.eq("record_date", recordDate);
|
|
|
+ queryWrapper.in("windpowerstation_id", wpls);
|
|
|
List<String> idls = proEconEquipmentInfoDay2Service.list(queryWrapper).stream().map(ProEconEquipmentInfoDay2::getId)
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
|
- List<String> tempids=new ArrayList<>();
|
|
|
+ List<String> tempids = new ArrayList<>();
|
|
|
|
|
|
- for(int i=0;i<idls.size();i++)
|
|
|
- {
|
|
|
+ for (int i = 0; i < idls.size(); i++) {
|
|
|
tempids.add(idls.get(i));
|
|
|
- if(tempids.size()==1000)
|
|
|
- {
|
|
|
+ if (tempids.size() == 1000) {
|
|
|
proEconEquipmentInfoDay2Service.removeByIds(tempids);
|
|
|
- tempids=new ArrayList<>();
|
|
|
+ tempids = new ArrayList<>();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if(!tempids.isEmpty())
|
|
|
- {
|
|
|
+ if (!tempids.isEmpty()) {
|
|
|
proEconEquipmentInfoDay2Service.removeByIds(tempids);
|
|
|
}
|
|
|
|
|
|
|
|
|
- List<ProEconEquipmentInfoDay2> templs=new ArrayList<>();
|
|
|
- for(ProEconEquipmentInfoDay2 vo:dayls)
|
|
|
- {
|
|
|
- if(StringUtils.notEmp(vo) && StringUtils.notEmp(vo.getWindturbineId()))
|
|
|
- {
|
|
|
+ List<ProEconEquipmentInfoDay2> templs = new ArrayList<>();
|
|
|
+ for (ProEconEquipmentInfoDay2 vo : dayls) {
|
|
|
+ if (StringUtils.notEmp(vo) && StringUtils.notEmp(vo.getWindturbineId())) {
|
|
|
templs.add(vo);
|
|
|
- if(templs.size()==1000)
|
|
|
- {
|
|
|
+ if (templs.size() == 1000) {
|
|
|
proEconEquipmentInfoDay2Service.saveBatch(templs);
|
|
|
- templs=new ArrayList<>();
|
|
|
+ templs = new ArrayList<>();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
- if(!templs.isEmpty())
|
|
|
- {
|
|
|
+ if (!templs.isEmpty()) {
|
|
|
proEconEquipmentInfoDay2Service.saveBatch(templs);
|
|
|
}
|
|
|
|
|
@@ -177,204 +190,172 @@ public class EquipmentInfo2Service {
|
|
|
|
|
|
double lastState;
|
|
|
|
|
|
- double djsc=0;
|
|
|
- double sdtjsc=0;
|
|
|
- double zcfdsc=0;
|
|
|
- double fdjclsc=0;
|
|
|
- double gzsc=0;
|
|
|
- double gzslsc=0;
|
|
|
- double jxsc=0;
|
|
|
- double jxslsc=0;
|
|
|
- double xdjclsc=0;
|
|
|
- double xdtjsc=0;
|
|
|
- double dwslsc=0;
|
|
|
- double hjslsc=0;
|
|
|
- double txzdsc=0;
|
|
|
- double sblxsc=0;
|
|
|
+ double djsc = 0;
|
|
|
+ double sdtjsc = 0;
|
|
|
+ double zcfdsc = 0;
|
|
|
+ double fdjclsc = 0;
|
|
|
+ double gzsc = 0;
|
|
|
+ double gzslsc = 0;
|
|
|
+ double jxsc = 0;
|
|
|
+ double jxslsc = 0;
|
|
|
+ double xdjclsc = 0;
|
|
|
+ double xdtjsc = 0;
|
|
|
+ double dwslsc = 0;
|
|
|
+ double hjslsc = 0;
|
|
|
+ double txzdsc = 0;
|
|
|
+ double sblxsc = 0;
|
|
|
|
|
|
Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
|
|
|
|
|
|
|
|
|
- lastState=-1;
|
|
|
- Map<String, ProBasicEquipmentPoint> aimap=wtpAimap.get(wt.getId());
|
|
|
-
|
|
|
- if(aimap.containsKey(ContantXk.MXZT))
|
|
|
- {
|
|
|
-
|
|
|
- ProBasicEquipmentPoint point=aimap.get(ContantXk.MXZT);
|
|
|
-
|
|
|
- List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
|
|
|
- if(!pointls.isEmpty())
|
|
|
- {
|
|
|
- for(PointData po :pointls)
|
|
|
- {
|
|
|
-
|
|
|
- if(po.getPointValueInDouble()==0)
|
|
|
- {
|
|
|
-
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- djsc++;
|
|
|
- }else if(po.getPointValueInDouble()==1)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- sdtjsc++;
|
|
|
- }else if(po.getPointValueInDouble()==2)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- zcfdsc++;
|
|
|
- }else if(po.getPointValueInDouble()==3)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- fdjclsc++;
|
|
|
- }else if(po.getPointValueInDouble()==4)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- gzsc++;
|
|
|
- }else if(po.getPointValueInDouble()==5)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- gzslsc++;
|
|
|
- }else if(po.getPointValueInDouble()==6)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- jxsc++;
|
|
|
- }else if(po.getPointValueInDouble()==7)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- jxslsc++;
|
|
|
- }else if(po.getPointValueInDouble()==8)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- xdjclsc++;
|
|
|
- }else if(po.getPointValueInDouble()==9)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- xdtjsc++;
|
|
|
- }else if(po.getPointValueInDouble()==10)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- dwslsc++;
|
|
|
- }else if(po.getPointValueInDouble()==11)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- hjslsc++;
|
|
|
- }else if(po.getPointValueInDouble()==12)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- txzdsc++;
|
|
|
- }else if(po.getPointValueInDouble()==13)
|
|
|
- {
|
|
|
- if(lastState!=po.getPointValueInDouble())
|
|
|
- {
|
|
|
-
|
|
|
-
|
|
|
- lastState=po.getPointValueInDouble();
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- sblxsc++;
|
|
|
+ lastState = -1;
|
|
|
+ Map<String, ProBasicEquipmentPoint> aimap = wtpAimap.get(wt.getId());
|
|
|
+
|
|
|
+ if (aimap.containsKey(ContantXk.MXZT)) {
|
|
|
+
|
|
|
+ ProBasicEquipmentPoint point = aimap.get(ContantXk.MXZT);
|
|
|
+
|
|
|
+ List<PointData> pointls = edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime() / 1000, end.getTime() / 1000);
|
|
|
+ if (!pointls.isEmpty()) {
|
|
|
+ for (PointData po : pointls) {
|
|
|
+
|
|
|
+ if (po.getPointValueInDouble() == 0) {
|
|
|
+
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
}
|
|
|
+
|
|
|
+ djsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 1) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ sdtjsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 2) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ zcfdsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 3) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ fdjclsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 4) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
+
|
|
|
+ gzsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 5) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ gzslsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 6) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ jxsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 7) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ jxslsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 8) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
+
|
|
|
+ xdjclsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 9) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ xdtjsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 10) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ dwslsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 11) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ hjslsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 12) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ txzdsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 13) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ sblxsc++;
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
pewp.setRgzxsmx(new BigDecimal(gzsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
|
|
@@ -405,93 +386,87 @@ public class EquipmentInfo2Service {
|
|
|
pewp.setRlxxsmx(new BigDecimal(sblxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- if(pepidls.isEmpty())
|
|
|
- {
|
|
|
+ if (pepidls.isEmpty()) {
|
|
|
setLossHoursMonth(pewp);
|
|
|
|
|
|
- }else
|
|
|
- {
|
|
|
+ } else {
|
|
|
|
|
|
|
|
|
- ProEconEquipmentInfoDay2 pepid=pepidls.get(0);
|
|
|
+ ProEconEquipmentInfoDay2 pepid = pepidls.get(0);
|
|
|
|
|
|
|
|
|
- pewp.setYgzxsmx(StringUtils.round(pepid.getYgzxsmx()+pewp.getRgzxsmx(),2));
|
|
|
+ pewp.setYgzxsmx(StringUtils.round(pepid.getYgzxsmx() + pewp.getRgzxsmx(), 2));
|
|
|
|
|
|
- pewp.setYcnslgzxsmx(StringUtils.round(pepid.getYcnslgzxsmx()+pewp.getRcnslgzxsmx(),2));
|
|
|
+ pewp.setYcnslgzxsmx(StringUtils.round(pepid.getYcnslgzxsmx() + pewp.getRcnslgzxsmx(), 2));
|
|
|
|
|
|
- pewp.setYjxxsmx(StringUtils.round(pepid.getYjxxsmx()+pewp.getRjxxsmx(),2));
|
|
|
+ pewp.setYjxxsmx(StringUtils.round(pepid.getYjxxsmx() + pewp.getRjxxsmx(), 2));
|
|
|
|
|
|
- pewp.setYcnsljxxsmx(StringUtils.round( pepid.getYcnsljxxsmx()+pewp.getRcnsljxxsmx(),2));
|
|
|
+ pewp.setYcnsljxxsmx(StringUtils.round(pepid.getYcnsljxxsmx() + pewp.getRcnsljxxsmx(), 2));
|
|
|
|
|
|
- pewp.setYdjxsmx(StringUtils.round(pepid.getYdjxsmx()+pewp.getRdjxsmx(),2));
|
|
|
+ pewp.setYdjxsmx(StringUtils.round(pepid.getYdjxsmx() + pewp.getRdjxsmx(), 2));
|
|
|
|
|
|
- pewp.setYqxjclxsmx(StringUtils.round(pepid.getYqxjclxsmx()+pewp.getRqxjclxsmx(),2));
|
|
|
+ pewp.setYqxjclxsmx(StringUtils.round(pepid.getYqxjclxsmx() + pewp.getRqxjclxsmx(), 2));
|
|
|
|
|
|
- pewp.setYsdtjxsmx(StringUtils.round(pepid.getYsdtjxsmx()+pewp.getRsdtjxsmx(),2));
|
|
|
+ pewp.setYsdtjxsmx(StringUtils.round(pepid.getYsdtjxsmx() + pewp.getRsdtjxsmx(), 2));
|
|
|
|
|
|
- pewp.setYbwxsmx(StringUtils.round(pepid.getYbwxsmx()+pewp.getRbwxsmx(),2));
|
|
|
+ pewp.setYbwxsmx(StringUtils.round(pepid.getYbwxsmx() + pewp.getRbwxsmx(), 2));
|
|
|
|
|
|
- pewp.setYxdtjxsmx(StringUtils.round(pepid.getYxdtjxsmx()+pewp.getRxdtjxsmx(),2));
|
|
|
+ pewp.setYxdtjxsmx(StringUtils.round(pepid.getYxdtjxsmx() + pewp.getRxdtjxsmx(), 2));
|
|
|
|
|
|
- pewp.setYxdjclxsmx(StringUtils.round(pepid.getYxdjclxsmx()+pewp.getRxdjclxsmx(),2));
|
|
|
+ pewp.setYxdjclxsmx(StringUtils.round(pepid.getYxdjclxsmx() + pewp.getRxdjclxsmx(), 2));
|
|
|
|
|
|
- pewp.setYcwsldwxsmx(StringUtils.round(pepid.getYcwsldwxsmx()+pewp.getRcwsldwxsmx(),2));
|
|
|
+ pewp.setYcwsldwxsmx(StringUtils.round(pepid.getYcwsldwxsmx() + pewp.getRcwsldwxsmx(), 2));
|
|
|
|
|
|
- pewp.setYcwsltqxsmx(StringUtils.round(pepid.getYcwsltqxsmx()+pewp.getRcwsltqxsmx(),2));
|
|
|
+ pewp.setYcwsltqxsmx(StringUtils.round(pepid.getYcwsltqxsmx() + pewp.getRcwsltqxsmx(), 2));
|
|
|
|
|
|
- pewp.setYtxzdxsmx(StringUtils.round(pepid.getYtxzdxsmx()+pewp.getRtxzdxsmx(),2));
|
|
|
+ pewp.setYtxzdxsmx(StringUtils.round(pepid.getYtxzdxsmx() + pewp.getRtxzdxsmx(), 2));
|
|
|
|
|
|
- pewp.setYlxxsmx(StringUtils.round(pepid.getYlxxsmx()+pewp.getRlxxsmx(),2));
|
|
|
+ pewp.setYlxxsmx(StringUtils.round(pepid.getYlxxsmx() + pewp.getRlxxsmx(), 2));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
- if(pepidls.isEmpty())
|
|
|
- {
|
|
|
+ if (pepidls.isEmpty()) {
|
|
|
setLossHoursYear(pewp);
|
|
|
- }else
|
|
|
- {
|
|
|
+ } else {
|
|
|
|
|
|
- ProEconEquipmentInfoDay2 pepid=pepidls.get(0);
|
|
|
+ ProEconEquipmentInfoDay2 pepid = pepidls.get(0);
|
|
|
|
|
|
|
|
|
- pewp.setNgzxsmx(StringUtils.round(pepid.getNgzxsmx()+pewp.getRgzxsmx(),2));
|
|
|
+ pewp.setNgzxsmx(StringUtils.round(pepid.getNgzxsmx() + pewp.getRgzxsmx(), 2));
|
|
|
|
|
|
- pewp.setNcnslgzxsmx(StringUtils.round(pepid.getNcnslgzxsmx()+pewp.getRcnslgzxsmx(),2));
|
|
|
+ pewp.setNcnslgzxsmx(StringUtils.round(pepid.getNcnslgzxsmx() + pewp.getRcnslgzxsmx(), 2));
|
|
|
|
|
|
- pewp.setNjxxsmx(StringUtils.round(pepid.getNjxxsmx()+pewp.getRjxxsmx(),2));
|
|
|
+ pewp.setNjxxsmx(StringUtils.round(pepid.getNjxxsmx() + pewp.getRjxxsmx(), 2));
|
|
|
|
|
|
- pewp.setNcnsljxxsmx(StringUtils.round( pepid.getNcnsljxxsmx()+pewp.getRcnsljxxsmx(),2));
|
|
|
+ pewp.setNcnsljxxsmx(StringUtils.round(pepid.getNcnsljxxsmx() + pewp.getRcnsljxxsmx(), 2));
|
|
|
|
|
|
- pewp.setNdjxsmx(StringUtils.round(pepid.getNdjxsmx()+pewp.getRdjxsmx(),2));
|
|
|
+ pewp.setNdjxsmx(StringUtils.round(pepid.getNdjxsmx() + pewp.getRdjxsmx(), 2));
|
|
|
|
|
|
- pewp.setNqxjclxsmx(StringUtils.round(pepid.getNqxjclxsmx()+pewp.getRqxjclxsmx(),2));
|
|
|
+ pewp.setNqxjclxsmx(StringUtils.round(pepid.getNqxjclxsmx() + pewp.getRqxjclxsmx(), 2));
|
|
|
|
|
|
- pewp.setNsdtjxsmx(StringUtils.round(pepid.getNsdtjxsmx()+pewp.getRsdtjxsmx(),2));
|
|
|
+ pewp.setNsdtjxsmx(StringUtils.round(pepid.getNsdtjxsmx() + pewp.getRsdtjxsmx(), 2));
|
|
|
|
|
|
- pewp.setNbwxsmx(StringUtils.round(pepid.getNbwxsmx()+pewp.getRbwxsmx(),2));
|
|
|
+ pewp.setNbwxsmx(StringUtils.round(pepid.getNbwxsmx() + pewp.getRbwxsmx(), 2));
|
|
|
|
|
|
- pewp.setNxdtjxsmx(StringUtils.round(pepid.getNxdtjxsmx()+pewp.getRxdtjxsmx(),2));
|
|
|
+ pewp.setNxdtjxsmx(StringUtils.round(pepid.getNxdtjxsmx() + pewp.getRxdtjxsmx(), 2));
|
|
|
|
|
|
- pewp.setNxdjclxsmx(StringUtils.round(pepid.getNxdjclxsmx()+pewp.getRxdjclxsmx(),2));
|
|
|
+ pewp.setNxdjclxsmx(StringUtils.round(pepid.getNxdjclxsmx() + pewp.getRxdjclxsmx(), 2));
|
|
|
|
|
|
- pewp.setNcwsldwxsmx(StringUtils.round(pepid.getNcwsldwxsmx()+pewp.getRcwsldwxsmx(),2));
|
|
|
+ pewp.setNcwsldwxsmx(StringUtils.round(pepid.getNcwsldwxsmx() + pewp.getRcwsldwxsmx(), 2));
|
|
|
|
|
|
- pewp.setNcwsltqxsmx(StringUtils.round(pepid.getNcwsltqxsmx()+pewp.getRcwsltqxsmx(),2));
|
|
|
+ pewp.setNcwsltqxsmx(StringUtils.round(pepid.getNcwsltqxsmx() + pewp.getRcwsltqxsmx(), 2));
|
|
|
|
|
|
- pewp.setNtxzdxsmx(StringUtils.round(pepid.getNtxzdxsmx()+pewp.getRtxzdxsmx(),2));
|
|
|
+ pewp.setNtxzdxsmx(StringUtils.round(pepid.getNtxzdxsmx() + pewp.getRtxzdxsmx(), 2));
|
|
|
|
|
|
- pewp.setNlxxsmx(StringUtils.round(pepid.getNlxxsmx()+pewp.getRlxxsmx(),2));
|
|
|
+ pewp.setNlxxsmx(StringUtils.round(pepid.getNlxxsmx() + pewp.getRlxxsmx(), 2));
|
|
|
|
|
|
}
|
|
|
|
|
@@ -595,7 +570,7 @@ public class EquipmentInfo2Service {
|
|
|
pewp.setNslxs(pewp.getRslxs());
|
|
|
}
|
|
|
|
|
|
- private void calSimple(ProEconEquipmentInfoDay2 pewp, Date end, Date begin, ProBasicEquipment wt, List<ProEconEquipmentInfoDay2> pepidls) throws Exception {
|
|
|
+ private void calSimple(ProEconEquipmentInfoDay2 pewp, Date end, Date begin, ProBasicEquipment wt, List<ProEconEquipmentInfoDay2> pepidls) throws Exception {
|
|
|
|
|
|
|
|
|
|
|
@@ -605,183 +580,175 @@ public class EquipmentInfo2Service {
|
|
|
|
|
|
|
|
|
|
|
|
- double lastState=-1;
|
|
|
+ double lastState = -1;
|
|
|
|
|
|
|
|
|
- double djsc=0;
|
|
|
- double zcfdsc=0;
|
|
|
- double gzsc=0;
|
|
|
- double jxsc=0;
|
|
|
- double xdtjsc=0;
|
|
|
- double slsc=0;
|
|
|
- double txzdsc=0;
|
|
|
-
|
|
|
+ double djsc = 0;
|
|
|
+ double zcfdsc = 0;
|
|
|
+ double gzsc = 0;
|
|
|
+ double jxsc = 0;
|
|
|
+ double xdtjsc = 0;
|
|
|
+ double slsc = 0;
|
|
|
+ double txzdsc = 0;
|
|
|
|
|
|
|
|
|
Map<String, Map<String, ProBasicEquipmentPoint>> wtpAimap = CacheContext.wtpAimap;
|
|
|
|
|
|
|
|
|
- Map<String, ProBasicEquipmentPoint> aimap=wtpAimap.get(wt.getId());
|
|
|
- if(aimap.containsKey(ContantXk.SBZT))
|
|
|
- {
|
|
|
+ Map<String, ProBasicEquipmentPoint> aimap = wtpAimap.get(wt.getId());
|
|
|
+ if (aimap.containsKey(ContantXk.SBZT)) {
|
|
|
|
|
|
- ProBasicEquipmentPoint point=aimap.get(ContantXk.SBZT);
|
|
|
-
|
|
|
- List<PointData> pointls=edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime()/1000, end.getTime()/1000);
|
|
|
- if(!pointls.isEmpty()) {
|
|
|
- for (PointData po : pointls) {
|
|
|
+ ProBasicEquipmentPoint point = aimap.get(ContantXk.SBZT);
|
|
|
+
|
|
|
+ List<PointData> pointls = edosUtil.getHistoryDatasSnap(point.getNemCode(), begin.getTime() / 1000, end.getTime() / 1000);
|
|
|
+ if (!pointls.isEmpty()) {
|
|
|
+ for (PointData po : pointls) {
|
|
|
|
|
|
- if (po.getPointValueInDouble() == 0) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
+ if (po.getPointValueInDouble() == 0) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
|
|
|
-
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
- djsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 1) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
+ }
|
|
|
+
|
|
|
+ djsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 1) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
|
|
|
-
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
- zcfdsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 2) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
+ }
|
|
|
+
|
|
|
+ zcfdsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 2) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
|
|
|
-
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
- gzsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 3) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
+ }
|
|
|
+
|
|
|
+ gzsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 3) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
|
|
|
-
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- jxsc++;
|
|
|
+
|
|
|
+ jxsc++;
|
|
|
|
|
|
- } else if (po.getPointValueInDouble() == 4) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
+ } else if (po.getPointValueInDouble() == 4) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
|
|
|
-
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- xdtjsc++;
|
|
|
- } else if (po.getPointValueInDouble() == 5) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ xdtjsc++;
|
|
|
+ } else if (po.getPointValueInDouble() == 5) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
|
|
|
-
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- slsc++;
|
|
|
+
|
|
|
+ slsc++;
|
|
|
|
|
|
- } else if (po.getPointValueInDouble() == 6) {
|
|
|
- if (lastState != po.getPointValueInDouble()) {
|
|
|
-
|
|
|
- lastState = po.getPointValueInDouble();
|
|
|
+ } else if (po.getPointValueInDouble() == 6) {
|
|
|
+ if (lastState != po.getPointValueInDouble()) {
|
|
|
+
|
|
|
+ lastState = po.getPointValueInDouble();
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
- txzdsc++;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ txzdsc++;
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- pewp.setRdjxs(new BigDecimal(gzsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
- pewp.setRjxtjxs(new BigDecimal(jxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
- pewp.setRdjxs(new BigDecimal(djsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
- pewp.setRyxxs(new BigDecimal(zcfdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
- pewp.setRxdxs(new BigDecimal(xdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
- pewp.setRtxzdxs(new BigDecimal(txzdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
- pewp.setRslxs(new BigDecimal(slsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- if(pepidls.isEmpty())
|
|
|
- {
|
|
|
- setLossHoursMonthSimple(pewp);
|
|
|
-
|
|
|
- }else
|
|
|
- {
|
|
|
-
|
|
|
- ProEconEquipmentInfoDay2 pepid=pepidls.get(0);
|
|
|
-
|
|
|
-
|
|
|
- pewp.setYdjxs(StringUtils.round(pepid.getYdjxs()+pewp.getRdjxs(),2));
|
|
|
-
|
|
|
- pewp.setYjxtjxs(StringUtils.round(pepid.getYjxtjxs()+pewp.getRjxtjxs(),2));
|
|
|
-
|
|
|
- pewp.setYgztjxs(StringUtils.round(pepid.getYgztjxs()+pewp.getRgztjxs(),2));
|
|
|
-
|
|
|
- pewp.setYyxxs(StringUtils.round(pepid.getYyxxs()+pewp.getRyxxs(),2));
|
|
|
-
|
|
|
- pewp.setYxdxs(StringUtils.round(pepid.getYxdxs()+pewp.getRxdxs(),2));
|
|
|
-
|
|
|
- pewp.setYtxzdxs(StringUtils.round(pepid.getYtxzdxs()+pewp.getRtxzdxs(),2));
|
|
|
-
|
|
|
- pewp.setYslxs(StringUtils.round(pepid.getYslxs()+pewp.getRslxs(),2));
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- if(pepidls.isEmpty())
|
|
|
- {
|
|
|
- setLossHoursYearSimple(pewp);
|
|
|
-
|
|
|
- }else
|
|
|
- {
|
|
|
- ProEconEquipmentInfoDay2 pepid=pepidls.get(0);
|
|
|
-
|
|
|
-
|
|
|
- pewp.setNdjxs(StringUtils.round(pepid.getNdjxs()+pewp.getRdjxs(),2));
|
|
|
-
|
|
|
- pewp.setNjxtjxs(StringUtils.round(pepid.getNjxtjxs()+pewp.getRjxtjxs(),2));
|
|
|
-
|
|
|
- pewp.setNgztjxs(StringUtils.round(pepid.getNgztjxs()+pewp.getRgztjxs(),2));
|
|
|
-
|
|
|
- pewp.setNyxxs(StringUtils.round(pepid.getNyxxs()+pewp.getRyxxs(),2));
|
|
|
-
|
|
|
- pewp.setNxdxs(StringUtils.round(pepid.getNxdxs()+pewp.getRxdxs(),2));
|
|
|
-
|
|
|
- pewp.setNtxzdxs(StringUtils.round(pepid.getNtxzdxs()+pewp.getRtxzdxs(),2));
|
|
|
-
|
|
|
- pewp.setNslxs(StringUtils.round(pepid.getNslxs()+pewp.getRslxs(),2));
|
|
|
|
|
|
- }
|
|
|
-
|
|
|
+
|
|
|
+ pewp.setRdjxs(new BigDecimal(gzsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+ pewp.setRjxtjxs(new BigDecimal(jxsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+ pewp.setRdjxs(new BigDecimal(djsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+ pewp.setRyxxs(new BigDecimal(zcfdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+ pewp.setRxdxs(new BigDecimal(xdtjsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+ pewp.setRtxzdxs(new BigDecimal(txzdsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+ pewp.setRslxs(new BigDecimal(slsc).divide(new BigDecimal(60), 2, RoundingMode.HALF_EVEN).doubleValue());
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if (pepidls.isEmpty()) {
|
|
|
+ setLossHoursMonthSimple(pewp);
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ ProEconEquipmentInfoDay2 pepid = pepidls.get(0);
|
|
|
+
|
|
|
+
|
|
|
+ pewp.setYdjxs(StringUtils.round(pepid.getYdjxs() + pewp.getRdjxs(), 2));
|
|
|
+
|
|
|
+ pewp.setYjxtjxs(StringUtils.round(pepid.getYjxtjxs() + pewp.getRjxtjxs(), 2));
|
|
|
+
|
|
|
+ pewp.setYgztjxs(StringUtils.round(pepid.getYgztjxs() + pewp.getRgztjxs(), 2));
|
|
|
+
|
|
|
+ pewp.setYyxxs(StringUtils.round(pepid.getYyxxs() + pewp.getRyxxs(), 2));
|
|
|
+
|
|
|
+ pewp.setYxdxs(StringUtils.round(pepid.getYxdxs() + pewp.getRxdxs(), 2));
|
|
|
+
|
|
|
+ pewp.setYtxzdxs(StringUtils.round(pepid.getYtxzdxs() + pewp.getRtxzdxs(), 2));
|
|
|
+
|
|
|
+ pewp.setYslxs(StringUtils.round(pepid.getYslxs() + pewp.getRslxs(), 2));
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if (pepidls.isEmpty()) {
|
|
|
+ setLossHoursYearSimple(pewp);
|
|
|
+
|
|
|
+ } else {
|
|
|
+ ProEconEquipmentInfoDay2 pepid = pepidls.get(0);
|
|
|
+
|
|
|
+
|
|
|
+ pewp.setNdjxs(StringUtils.round(pepid.getNdjxs() + pewp.getRdjxs(), 2));
|
|
|
+
|
|
|
+ pewp.setNjxtjxs(StringUtils.round(pepid.getNjxtjxs() + pewp.getRjxtjxs(), 2));
|
|
|
+
|
|
|
+ pewp.setNgztjxs(StringUtils.round(pepid.getNgztjxs() + pewp.getRgztjxs(), 2));
|
|
|
+
|
|
|
+ pewp.setNyxxs(StringUtils.round(pepid.getNyxxs() + pewp.getRyxxs(), 2));
|
|
|
+
|
|
|
+ pewp.setNxdxs(StringUtils.round(pepid.getNxdxs() + pewp.getRxdxs(), 2));
|
|
|
+
|
|
|
+ pewp.setNtxzdxs(StringUtils.round(pepid.getNtxzdxs() + pewp.getRtxzdxs(), 2));
|
|
|
+
|
|
|
+ pewp.setNslxs(StringUtils.round(pepid.getNslxs() + pewp.getRslxs(), 2));
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
|