|
@@ -219,7 +219,6 @@ public class ProEconEquipmentInfoDayTopServiceImpl extends ServiceImpl<ProEconEq
|
|
|
|
|
|
QueryWrapper<ProEconEquipmentInfoDayTop> qw = new QueryWrapper<>();
|
|
|
|
|
|
-
|
|
|
if (StringUtils.isNotEmpty(windturbineId)) {
|
|
|
qw.lambda().eq(ProEconEquipmentInfoDayTop::getWindturbineId, windturbineId);
|
|
|
}
|
|
@@ -231,7 +230,7 @@ public class ProEconEquipmentInfoDayTopServiceImpl extends ServiceImpl<ProEconEq
|
|
|
qw.lambda().ge(ProEconEquipmentInfoDayTop::getRecordDate, DateUtils.parseDate(beginDate)).
|
|
|
le(ProEconEquipmentInfoDayTop::getRecordDate, DateUtils.parseDate(endDate));
|
|
|
|
|
|
-
|
|
|
+ qw.orderByAsc("record_date");
|
|
|
List<ProEconEquipmentInfoDayTop> list = baseMapper.selectList(qw);
|
|
|
list.stream().forEach(i -> {
|
|
|
i.setNemCode(CacheContext.wtmap.get(i.getWindturbineId()).getAname());
|