|
@@ -115,7 +115,7 @@ public class ApplicationService {
|
|
|
return map;
|
|
|
}
|
|
|
|
|
|
- public List electricity() throws Exception {
|
|
|
+ public Map electricity() throws Exception {
|
|
|
|
|
|
long longDate = System.currentTimeMillis();
|
|
|
Date nowDate = new Date(longDate);
|
|
@@ -130,6 +130,7 @@ public class ApplicationService {
|
|
|
|
|
|
List<Double> list = new ArrayList<>();
|
|
|
Map<String,Object> map = new HashMap<>();
|
|
|
+ Map<String,Object> zb = new HashMap<>();
|
|
|
List<ProBasicPowerstation> wpls = CacheContext.wpls;
|
|
|
|
|
|
|
|
@@ -147,7 +148,7 @@ public class ApplicationService {
|
|
|
|
|
|
for (ProBasicPowerstation wp : wpls){
|
|
|
|
|
|
- list = new ArrayList<>();
|
|
|
+ zb = new HashMap<>();
|
|
|
|
|
|
//日发电量
|
|
|
ProBasicPowerstationPoint rfdlvalue = proBasicPowerstationPointService.getPowerstationPoint(wp.getId(), ContantXk.RFDL);
|
|
@@ -167,18 +168,18 @@ public class ApplicationService {
|
|
|
njhdl = year.stream().mapToDouble(ProBasicProjectPlan::getGeneratingCapacity).sum();
|
|
|
rjhdl = yjhdl / 30;
|
|
|
|
|
|
- list.add(rfdl);
|
|
|
- list.add(yfdl);
|
|
|
- list.add(nfdl);
|
|
|
+ zb.put("rfdl",rfdl);
|
|
|
+ zb.put("yfdl",yfdl);
|
|
|
+ zb.put("nfdl",nfdl);
|
|
|
|
|
|
- list.add(rjhdl);
|
|
|
- list.add(yjhdl);
|
|
|
- list.add(njhdl);
|
|
|
+ zb.put("rjhdl",rjhdl);
|
|
|
+ zb.put("yjhdl",yjhdl);
|
|
|
+ zb.put("njhdl",njhdl);
|
|
|
|
|
|
- map.put(wp.getId(),list);
|
|
|
+ map.put(wp.getId(),zb);
|
|
|
}
|
|
|
|
|
|
|
|
|
- return list;
|
|
|
+ return map;
|
|
|
}
|
|
|
}
|