|
@@ -186,9 +186,9 @@ public class ApplicationService {
|
|
|
return map;
|
|
|
}
|
|
|
|
|
|
- public Map forecast(String type,String wpId) throws Exception {
|
|
|
+ public List<Map> forecast(String type,String wpId) throws Exception {
|
|
|
|
|
|
- Map<String,Object> map = new HashMap<>();
|
|
|
+ List<Map> list = new ArrayList<>();
|
|
|
Map<Integer,Object> zb = new HashMap<>();
|
|
|
long longDate = System.currentTimeMillis();
|
|
|
Date nowDate = new Date(longDate);
|
|
@@ -199,21 +199,22 @@ public class ApplicationService {
|
|
|
if (type.equals("0")) {
|
|
|
QueryWrapper<ProEconStationPower> qw = new QueryWrapper<>();
|
|
|
qw.lambda().eq(ProEconStationPower::getRecordDate, nowDate);
|
|
|
- qwt = powerService.list();
|
|
|
+ qwt = powerService.list(qw);
|
|
|
zb.put(i,qwt);
|
|
|
}else {
|
|
|
QueryWrapper<ProEconStationPower> qw = new QueryWrapper<>();
|
|
|
qw.lambda().eq(ProEconStationPower::getRecordDate, nowDate);
|
|
|
qw.lambda().eq(ProEconStationPower::getWindpowerstationId,wpId);
|
|
|
- qwt = powerService.list();
|
|
|
+ qwt = powerService.list(qw);
|
|
|
zb.put(i,qwt);
|
|
|
}
|
|
|
+ list.add(zb);
|
|
|
nowDate = DateUtils.addDays(nowDate, +1);
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- return map;
|
|
|
+ return list;
|
|
|
}
|
|
|
}
|