|
@@ -50,7 +50,6 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
|
|
|
return true;
|
|
|
}
|
|
|
-
|
|
|
@Override
|
|
|
public List<ProEconSystemEfficiencyEquipment> getbq(String foreignKeyId, Date date) {
|
|
|
List<ProEconSystemEfficiencyEquipment> currlist = new ArrayList<>();
|
|
@@ -58,10 +57,11 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
List<ProBasicEquipment> collect = CacheContext.wtls.stream()
|
|
|
.filter(wt -> foreignKeyId.equals(wt.getWindpowerstationId()))
|
|
|
.collect(Collectors.toList());
|
|
|
- for (ProBasicEquipment wt : collect) {
|
|
|
+
|
|
|
+ collect.stream().forEach(i -> {
|
|
|
QueryWrapper<ProEconSystemEfficiencyEquipment> qw = new QueryWrapper<>();
|
|
|
- if (StringUtils.isNotEmpty(wt.getId())) {
|
|
|
- qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, wt.getId());
|
|
|
+ if (StringUtils.isNotEmpty(i.getId())) {
|
|
|
+ qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, i.getId());
|
|
|
}
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
String dateString = sdf.format(date);
|
|
@@ -69,7 +69,7 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
qw.lambda().orderByDesc(ProEconSystemEfficiencyEquipment::getDataDate).last("LIMIT 1");
|
|
|
List<ProEconSystemEfficiencyEquipment> selectedList = baseMapper.selectList(qw);
|
|
|
currlist.addAll(selectedList);
|
|
|
- }
|
|
|
+ });
|
|
|
}
|
|
|
return currlist;
|
|
|
}
|
|
@@ -89,10 +89,10 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
cal.add(Calendar.MONTH, -1);
|
|
|
Date previousMonth = cal.getTime();
|
|
|
|
|
|
- for (ProBasicEquipment wt : collect) {
|
|
|
+ collect.stream().forEach(i -> {
|
|
|
QueryWrapper<ProEconSystemEfficiencyEquipment> qw = new QueryWrapper<>();
|
|
|
- if (StringUtils.isNotEmpty(wt.getId())) {
|
|
|
- qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, wt.getId());
|
|
|
+ if (StringUtils.isNotEmpty(i.getId())) {
|
|
|
+ qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, i.getId());
|
|
|
}
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
String dateString = sdf.format(previousMonth);
|
|
@@ -100,7 +100,7 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
qw.lambda().orderByDesc(ProEconSystemEfficiencyEquipment::getDataDate).last("LIMIT 1");
|
|
|
List<ProEconSystemEfficiencyEquipment> selectedList = baseMapper.selectList(qw);
|
|
|
currlist.addAll(selectedList);
|
|
|
- }
|
|
|
+ });
|
|
|
}
|
|
|
return currlist;
|
|
|
}
|
|
@@ -108,29 +108,6 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
|
|
|
@Override
|
|
|
public List<ProEconSystemEfficiencyEquipment> gettb(String foreignKeyId, Date date) {
|
|
|
-// QueryWrapper<ProEconSystemEfficiencyEquipment> qw = null;
|
|
|
-// // 当前数据
|
|
|
-// List<ProEconSystemEfficiencyEquipment> currlist = new ArrayList<>();
|
|
|
-// if (null != date) {
|
|
|
-// Calendar cal = Calendar.getInstance();
|
|
|
-// cal.setTime(date);
|
|
|
-// cal.add(Calendar.YEAR, -1);
|
|
|
-// Date oneYearAgo = cal.getTime();
|
|
|
-//
|
|
|
-// qw = new QueryWrapper<>();
|
|
|
-// if (StringUtils.isNotEmpty(foreignKeyId)) {
|
|
|
-// qw.lambda().eq(ProEconSystemEfficiencyEquipment::getStationId, foreignKeyId);
|
|
|
-// }
|
|
|
-// // 获取传入日期的年月
|
|
|
-// String yearMonth = new SimpleDateFormat("yyyy-MM").format(oneYearAgo);
|
|
|
-// // 设置日期为固定的一天(如1日)
|
|
|
-// String fixedDate = yearMonth + "-01";
|
|
|
-// qw.lambda().apply("to_char(data_date, 'YYYY-MM-DD')::timestamp without time zone >= to_timestamp('" + fixedDate + "', 'YYYY-MM-DD')");
|
|
|
-// qw.lambda().apply("to_char(data_date, 'YYYY-MM-DD')::timestamp without time zone < to_timestamp('" + fixedDate + "', 'YYYY-MM-DD') + interval '1 month'");
|
|
|
-// qw.lambda().orderByAsc(ProEconSystemEfficiencyEquipment::getOrderNum);
|
|
|
-// currlist = baseMapper.selectList(qw);
|
|
|
-// }
|
|
|
-// return currlist;
|
|
|
|
|
|
List<ProEconSystemEfficiencyEquipment> currlist = new ArrayList<>();
|
|
|
if (date != null) {
|
|
@@ -144,10 +121,10 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
cal.add(Calendar.YEAR, -1);
|
|
|
Date oneYearAgo = cal.getTime();
|
|
|
|
|
|
- for (ProBasicEquipment wt : collect) {
|
|
|
+ collect.stream().forEach(i -> {
|
|
|
QueryWrapper<ProEconSystemEfficiencyEquipment> qw = new QueryWrapper<>();
|
|
|
- if (StringUtils.isNotEmpty(wt.getId())) {
|
|
|
- qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, wt.getId());
|
|
|
+ if (StringUtils.isNotEmpty(i.getId())) {
|
|
|
+ qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, i.getId());
|
|
|
}
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
String dateString = sdf.format(oneYearAgo);
|
|
@@ -155,9 +132,118 @@ public class ProEconSystemEfficiencyEquipmentServiceImpl extends ServiceImpl<Pro
|
|
|
qw.lambda().orderByDesc(ProEconSystemEfficiencyEquipment::getDataDate).last("LIMIT 1");
|
|
|
List<ProEconSystemEfficiencyEquipment> selectedList = baseMapper.selectList(qw);
|
|
|
currlist.addAll(selectedList);
|
|
|
- }
|
|
|
+ });
|
|
|
}
|
|
|
return currlist;
|
|
|
}
|
|
|
|
|
|
+// @Override
|
|
|
+// public List<ProEconSystemEfficiencyEquipment> getbq(String foreignKeyId, Date date) {
|
|
|
+// List<ProEconSystemEfficiencyEquipment> currlist = new ArrayList<>();
|
|
|
+// if (date != null) {
|
|
|
+// List<ProBasicEquipment> collect = CacheContext.wtls.stream()
|
|
|
+// .filter(wt -> foreignKeyId.equals(wt.getWindpowerstationId()))
|
|
|
+// .collect(Collectors.toList());
|
|
|
+// for (ProBasicEquipment wt : collect) {
|
|
|
+// QueryWrapper<ProEconSystemEfficiencyEquipment> qw = new QueryWrapper<>();
|
|
|
+// if (StringUtils.isNotEmpty(wt.getId())) {
|
|
|
+// qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, wt.getId());
|
|
|
+// }
|
|
|
+// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
+// String dateString = sdf.format(date);
|
|
|
+// qw.lambda().apply("to_char(data_date, 'YYYY-MM') = '" + dateString + "'");
|
|
|
+// qw.lambda().orderByDesc(ProEconSystemEfficiencyEquipment::getDataDate).last("LIMIT 1");
|
|
|
+// List<ProEconSystemEfficiencyEquipment> selectedList = baseMapper.selectList(qw);
|
|
|
+// currlist.addAll(selectedList);
|
|
|
+// }
|
|
|
+// }
|
|
|
+// return currlist;
|
|
|
+// }
|
|
|
+
|
|
|
+// @Override
|
|
|
+// public List<ProEconSystemEfficiencyEquipment> gethb(String foreignKeyId, Date date) {
|
|
|
+//
|
|
|
+// List<ProEconSystemEfficiencyEquipment> currlist = new ArrayList<>();
|
|
|
+// if (date != null) {
|
|
|
+// List<ProBasicEquipment> collect = CacheContext.wtls.stream()
|
|
|
+// .filter(wt -> foreignKeyId.equals(wt.getWindpowerstationId()))
|
|
|
+// .collect(Collectors.toList());
|
|
|
+//
|
|
|
+// // 将日期减去一个月
|
|
|
+// Calendar cal = Calendar.getInstance();
|
|
|
+// cal.setTime(date);
|
|
|
+// cal.add(Calendar.MONTH, -1);
|
|
|
+// Date previousMonth = cal.getTime();
|
|
|
+//
|
|
|
+// for (ProBasicEquipment wt : collect) {
|
|
|
+// QueryWrapper<ProEconSystemEfficiencyEquipment> qw = new QueryWrapper<>();
|
|
|
+// if (StringUtils.isNotEmpty(wt.getId())) {
|
|
|
+// qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, wt.getId());
|
|
|
+// }
|
|
|
+// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
+// String dateString = sdf.format(previousMonth);
|
|
|
+// qw.lambda().apply("to_char(data_date, 'YYYY-MM') = '" + dateString + "'");
|
|
|
+// qw.lambda().orderByDesc(ProEconSystemEfficiencyEquipment::getDataDate).last("LIMIT 1");
|
|
|
+// List<ProEconSystemEfficiencyEquipment> selectedList = baseMapper.selectList(qw);
|
|
|
+// currlist.addAll(selectedList);
|
|
|
+// }
|
|
|
+// }
|
|
|
+// return currlist;
|
|
|
+// }
|
|
|
+
|
|
|
+
|
|
|
+// @Override
|
|
|
+// public List<ProEconSystemEfficiencyEquipment> gettb(String foreignKeyId, Date date) {
|
|
|
+//// QueryWrapper<ProEconSystemEfficiencyEquipment> qw = null;
|
|
|
+//// // 当前数据
|
|
|
+//// List<ProEconSystemEfficiencyEquipment> currlist = new ArrayList<>();
|
|
|
+//// if (null != date) {
|
|
|
+//// Calendar cal = Calendar.getInstance();
|
|
|
+//// cal.setTime(date);
|
|
|
+//// cal.add(Calendar.YEAR, -1);
|
|
|
+//// Date oneYearAgo = cal.getTime();
|
|
|
+////
|
|
|
+//// qw = new QueryWrapper<>();
|
|
|
+//// if (StringUtils.isNotEmpty(foreignKeyId)) {
|
|
|
+//// qw.lambda().eq(ProEconSystemEfficiencyEquipment::getStationId, foreignKeyId);
|
|
|
+//// }
|
|
|
+//// // 获取传入日期的年月
|
|
|
+//// String yearMonth = new SimpleDateFormat("yyyy-MM").format(oneYearAgo);
|
|
|
+//// // 设置日期为固定的一天(如1日)
|
|
|
+//// String fixedDate = yearMonth + "-01";
|
|
|
+//// qw.lambda().apply("to_char(data_date, 'YYYY-MM-DD')::timestamp without time zone >= to_timestamp('" + fixedDate + "', 'YYYY-MM-DD')");
|
|
|
+//// qw.lambda().apply("to_char(data_date, 'YYYY-MM-DD')::timestamp without time zone < to_timestamp('" + fixedDate + "', 'YYYY-MM-DD') + interval '1 month'");
|
|
|
+//// qw.lambda().orderByAsc(ProEconSystemEfficiencyEquipment::getOrderNum);
|
|
|
+//// currlist = baseMapper.selectList(qw);
|
|
|
+//// }
|
|
|
+//// return currlist;
|
|
|
+//
|
|
|
+// List<ProEconSystemEfficiencyEquipment> currlist = new ArrayList<>();
|
|
|
+// if (date != null) {
|
|
|
+// List<ProBasicEquipment> collect = CacheContext.wtls.stream()
|
|
|
+// .filter(wt -> foreignKeyId.equals(wt.getWindpowerstationId()))
|
|
|
+// .collect(Collectors.toList());
|
|
|
+//
|
|
|
+// // 将日期减去一个月
|
|
|
+// Calendar cal = Calendar.getInstance();
|
|
|
+// cal.setTime(date);
|
|
|
+// cal.add(Calendar.YEAR, -1);
|
|
|
+// Date oneYearAgo = cal.getTime();
|
|
|
+//
|
|
|
+// for (ProBasicEquipment wt : collect) {
|
|
|
+// QueryWrapper<ProEconSystemEfficiencyEquipment> qw = new QueryWrapper<>();
|
|
|
+// if (StringUtils.isNotEmpty(wt.getId())) {
|
|
|
+// qw.lambda().eq(ProEconSystemEfficiencyEquipment::getEquipmentId, wt.getId());
|
|
|
+// }
|
|
|
+// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM");
|
|
|
+// String dateString = sdf.format(oneYearAgo);
|
|
|
+// qw.lambda().apply("to_char(data_date, 'YYYY-MM') = '" + dateString + "'");
|
|
|
+// qw.lambda().orderByDesc(ProEconSystemEfficiencyEquipment::getDataDate).last("LIMIT 1");
|
|
|
+// List<ProEconSystemEfficiencyEquipment> selectedList = baseMapper.selectList(qw);
|
|
|
+// currlist.addAll(selectedList);
|
|
|
+// }
|
|
|
+// }
|
|
|
+// return currlist;
|
|
|
+// }
|
|
|
+
|
|
|
}
|