|
@@ -883,8 +883,8 @@ public class SpecificService {
|
|
|
|
|
|
public List<SpecificTarget> fdlList(String companys, String type, String year) {
|
|
|
//获取年份所有当月的数据
|
|
|
- QueryWrapper<ProEconPowerstationInfoDay1> currentqw = new QueryWrapper<>();
|
|
|
- currentqw.select("foreign_key_id,max(record_date) record_date,sum(rfdl) yfdl");
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> currentqw = new QueryWrapper<>();
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,sum(rfdldb) yfdldb");
|
|
|
currentqw.eq("location", "wp");
|
|
|
currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
if (type.equals("-1")) {
|
|
@@ -898,17 +898,17 @@ public class SpecificService {
|
|
|
currentqw.eq("region_id", companys);
|
|
|
}
|
|
|
currentqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
- List<ProEconPowerstationInfoDay1> currentList = proEconPowerstationInfoDay1Service.list(currentqw);
|
|
|
+ List<ProEconPowerstationInfoDay5> currentList = proEconPowerstationInfoDay5Service.list(currentqw);
|
|
|
currentqw.clear();
|
|
|
- currentqw.select("foreign_key_id,max(record_date) record_date,sum(rfdl) yfdl");
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,sum(rfdldb) yfdldb");
|
|
|
currentqw.eq("foreign_key_id", companys + type);
|
|
|
currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
currentqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
- currentList.addAll(proEconPowerstationInfoDay1Service.list(currentqw));
|
|
|
+ currentList.addAll(proEconPowerstationInfoDay5Service.list(currentqw));
|
|
|
|
|
|
int subYear = Integer.parseInt(year) - 1;
|
|
|
- QueryWrapper<ProEconPowerstationInfoDay1> sameperiodqw = new QueryWrapper<>();
|
|
|
- sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rfdl) yfdl");
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> sameperiodqw = new QueryWrapper<>();
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rfdldb) yfdldb");
|
|
|
sameperiodqw.eq("location", "wp");
|
|
|
if (type.equals("-1")) {
|
|
|
currentqw.like("foreign_key_id", "_FDC_");
|
|
@@ -922,13 +922,13 @@ public class SpecificService {
|
|
|
}
|
|
|
sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
- List<ProEconPowerstationInfoDay1> sameperiodList = proEconPowerstationInfoDay1Service.list(sameperiodqw);
|
|
|
+ List<ProEconPowerstationInfoDay5> sameperiodList = proEconPowerstationInfoDay5Service.list(sameperiodqw);
|
|
|
sameperiodqw.clear();
|
|
|
- sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rfdl) yfdl");
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rfdldb) yfdldb");
|
|
|
sameperiodqw.eq("foreign_key_id", companys + type);
|
|
|
sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
- sameperiodList.addAll(proEconPowerstationInfoDay1Service.list(sameperiodqw));
|
|
|
+ sameperiodList.addAll(proEconPowerstationInfoDay5Service.list(sameperiodqw));
|
|
|
|
|
|
//合并当月与同期数据为返回结果
|
|
|
List<SpecificTargetVo> resultList = new ArrayList<>();
|
|
@@ -946,16 +946,18 @@ public class SpecificService {
|
|
|
}
|
|
|
vo.setYear(DateUtils.getYear(i.getRecordDate()));
|
|
|
vo.setMonth(DateUtils.getMonth(i.getRecordDate()));
|
|
|
- vo.setCurrent(DoubleUtils.keepPrecision(i.getYfdl().doubleValue() / 10000, 2));
|
|
|
+ vo.setCurrent(DoubleUtils.keepPrecision(i.getYfdldb().doubleValue() / 10000, 2));
|
|
|
resultList.add(vo);
|
|
|
});
|
|
|
resultList.stream().forEach(i -> {
|
|
|
- Optional<ProEconPowerstationInfoDay1> optional = sameperiodList.stream()
|
|
|
- .filter(j -> j.getForeignKeyId().equals(i.getWpid()) && String.valueOf(DateUtils.getMonth(j.getRecordDate())).equals(i.getMonth()))
|
|
|
+ Optional<ProEconPowerstationInfoDay5> optional = sameperiodList.stream()
|
|
|
+ .filter(j -> i.getWpid().equals(j.getForeignKeyId())
|
|
|
+ && i.getMonth().equals(DateUtils.getMonthFromDate(j.getRecordDate())))
|
|
|
.findFirst();
|
|
|
+
|
|
|
if (optional.isPresent()) {
|
|
|
- ProEconPowerstationInfoDay1 tqinfoday = optional.get();
|
|
|
- i.setSameperiod(DoubleUtils.keepPrecision(tqinfoday.getYfdl().doubleValue() / 10000, 2));
|
|
|
+ ProEconPowerstationInfoDay5 tqinfoday = optional.get();
|
|
|
+ i.setSameperiod(DoubleUtils.keepPrecision(tqinfoday.getYfdldb().doubleValue() / 10000, 2));
|
|
|
i.setCompare(i.getCurrent().compareTo(i.getSameperiod()));
|
|
|
} else {
|
|
|
i.setSameperiod(0.0);
|
|
@@ -1097,7 +1099,8 @@ public class SpecificService {
|
|
|
});
|
|
|
resultList.stream().forEach(i -> {
|
|
|
Optional<ProEconPowerstationInfoDay5> optional = sameperiodList.stream()
|
|
|
- .filter(j -> j.getForeignKeyId().equals(i.getWpid()) && String.valueOf(DateUtils.getMonth(j.getRecordDate())).equals(i.getMonth()))
|
|
|
+// .filter(j -> j.getForeignKeyId().equals(i.getWpid()) && String.valueOf(DateUtils.getMonth(j.getRecordDate())).equals(i.getMonth()))
|
|
|
+ .filter(j -> j.getForeignKeyId().equals(i.getWpid()) && i.getMonth().equals(DateUtils.getMonthFromDate(j.getRecordDate())))
|
|
|
.findFirst();
|
|
|
if (optional.isPresent()) {
|
|
|
ProEconPowerstationInfoDay5 tqinfoday = optional.get();
|
|
@@ -1174,6 +1177,305 @@ public class SpecificService {
|
|
|
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public List<SpecificTarget> gwdlList(String companys, String type, String year) {
|
|
|
+ //获取年份所有当月的数据
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> currentqw = new QueryWrapper<>();
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,sum(rgwgwdldb) ygwgwdldb");
|
|
|
+ currentqw.eq("location", "wp");
|
|
|
+ currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
+ if (type.equals("-1")) {
|
|
|
+ currentqw.like("foreign_key_id", "_FDC_");
|
|
|
+ } else {
|
|
|
+ currentqw.like("foreign_key_id", "_GDC_");
|
|
|
+ }
|
|
|
+ if (companys.endsWith("ZGS")) {
|
|
|
+ currentqw.eq("company_id", companys);
|
|
|
+ } else {
|
|
|
+ currentqw.eq("region_id", companys);
|
|
|
+ }
|
|
|
+ currentqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ List<ProEconPowerstationInfoDay5> currentList = proEconPowerstationInfoDay5Service.list(currentqw);
|
|
|
+ currentqw.clear();
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,sum(rgwgwdldb) ygwgwdldb");
|
|
|
+ currentqw.eq("foreign_key_id", companys + type);
|
|
|
+ currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
+ currentqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ currentList.addAll(proEconPowerstationInfoDay5Service.list(currentqw));
|
|
|
+
|
|
|
+ int subYear = Integer.parseInt(year) - 1;
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> sameperiodqw = new QueryWrapper<>();
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rgwgwdldb) ygwgwdldb");
|
|
|
+ sameperiodqw.eq("location", "wp");
|
|
|
+ if (type.equals("-1")) {
|
|
|
+ currentqw.like("foreign_key_id", "_FDC_");
|
|
|
+ } else {
|
|
|
+ currentqw.like("foreign_key_id", "_GDC_");
|
|
|
+ }
|
|
|
+ if (companys.endsWith("ZGS")) {
|
|
|
+ currentqw.eq("company_id", companys);
|
|
|
+ } else {
|
|
|
+ currentqw.eq("region_id", companys);
|
|
|
+ }
|
|
|
+ sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
+ sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ List<ProEconPowerstationInfoDay5> sameperiodList = proEconPowerstationInfoDay5Service.list(sameperiodqw);
|
|
|
+ sameperiodqw.clear();
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rgwgwdldb) ygwgwdldb");
|
|
|
+ sameperiodqw.eq("foreign_key_id", companys + type);
|
|
|
+ sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
+ sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ sameperiodList.addAll(proEconPowerstationInfoDay5Service.list(sameperiodqw));
|
|
|
+
|
|
|
+ //合并当月与同期数据为返回结果
|
|
|
+ List<SpecificTargetVo> resultList = new ArrayList<>();
|
|
|
+
|
|
|
+ currentList.stream().forEach(i -> {
|
|
|
+ SpecificTargetVo vo = new SpecificTargetVo();
|
|
|
+ String wpid = i.getForeignKeyId();
|
|
|
+ vo.setWpid(wpid);
|
|
|
+ if (wpid.contains("_ZGS")) {
|
|
|
+ vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ } else if (wpid.contains("_RGN")) {
|
|
|
+ vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+ } else {
|
|
|
+ vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+ }
|
|
|
+ vo.setYear(DateUtils.getYear(i.getRecordDate()));
|
|
|
+ vo.setMonth(DateUtils.getMonth(i.getRecordDate()));
|
|
|
+ vo.setCurrent(DoubleUtils.keepPrecision(i.getYgwgwdldb().doubleValue() / 10000, 2));
|
|
|
+ resultList.add(vo);
|
|
|
+ });
|
|
|
+ resultList.stream().forEach(i -> {
|
|
|
+ Optional<ProEconPowerstationInfoDay5> optional = sameperiodList.stream()
|
|
|
+ .filter(j -> j.getForeignKeyId().equals(i.getWpid()) && i.getMonth().equals(DateUtils.getMonthFromDate(j.getRecordDate())))
|
|
|
+ .findFirst();
|
|
|
+ if (optional.isPresent()) {
|
|
|
+ ProEconPowerstationInfoDay5 tqinfoday = optional.get();
|
|
|
+ i.setSameperiod(DoubleUtils.keepPrecision(tqinfoday.getYgwgwdldb().doubleValue() / 10000, 2));
|
|
|
+ i.setCompare(i.getCurrent().compareTo(i.getSameperiod()));
|
|
|
+ } else {
|
|
|
+ i.setSameperiod(0.0);
|
|
|
+ i.setCompare(0);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ List<SpecificTarget> resultendList = new ArrayList<>();
|
|
|
+
|
|
|
+ Map<String, Map<Integer, SpecificTargetVo>> map = new HashMap<>();
|
|
|
+
|
|
|
+ resultList.stream().forEach(i -> {
|
|
|
+ if (map.containsKey(i.getWpid())) {
|
|
|
+ Map<Integer, SpecificTargetVo> integerListMap = map.get(i.getWpid());
|
|
|
+ if (!integerListMap.containsKey(i.getMonth())) {
|
|
|
+ map.get(i.getWpid()).put(i.getMonth(), i);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ Map<Integer, SpecificTargetVo> tempMap = new HashMap<>();
|
|
|
+ tempMap.put(i.getMonth(), i);
|
|
|
+ map.put(i.getWpid(), tempMap);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ Set<String> wpids = map.keySet();
|
|
|
+ if (StringUtils.isNotNull(wpids)) {
|
|
|
+ wpids.stream().forEach(wpid -> {
|
|
|
+ SpecificTarget vo = new SpecificTarget();
|
|
|
+ vo.setWpid(wpid);
|
|
|
+ int orderNum = 100;
|
|
|
+ if (wpid.contains("_ZGS")) {
|
|
|
+ vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ } else if (wpid.contains("_RGN")) {
|
|
|
+ vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+ } else {
|
|
|
+ vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+ orderNum = CacheContext.wpmap.get(wpid).getOrderNum();
|
|
|
+ }
|
|
|
+ vo.setOrderNum(orderNum);
|
|
|
+ List<SpecificTargetVo> tempList = new ArrayList<>();
|
|
|
+
|
|
|
+ Map<Integer, SpecificTargetVo> listMap = map.get(wpid);
|
|
|
+ for (int x = 1; x <= 12; x++) {
|
|
|
+ if (listMap.containsKey(x)) {
|
|
|
+ tempList.add(listMap.get(x));
|
|
|
+ } else {
|
|
|
+ SpecificTargetVo vo1 = new SpecificTargetVo();
|
|
|
+ vo1.setWpid(wpid);
|
|
|
+ if (wpid.contains("_ZGS")) {
|
|
|
+ vo1.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ } else if (wpid.contains("_RGN")) {
|
|
|
+ vo1.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+ } else {
|
|
|
+ vo1.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+ }
|
|
|
+ vo1.setYear(Integer.parseInt(year));
|
|
|
+ vo1.setMonth(x);
|
|
|
+ tempList.add(vo1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ vo.setTargetList(tempList);
|
|
|
+ resultendList.add(vo);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|
|
|
+
|
|
|
+ return resultendList;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public List<SpecificTarget> swdlList(String companys, String type, String year) {
|
|
|
+ //获取年份所有当月的数据
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> currentqw = new QueryWrapper<>();
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,sum(rswdldb) yswdldb");
|
|
|
+ currentqw.eq("location", "wp");
|
|
|
+ currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
+ if (type.equals("-1")) {
|
|
|
+ currentqw.like("foreign_key_id", "_FDC_");
|
|
|
+ } else {
|
|
|
+ currentqw.like("foreign_key_id", "_GDC_");
|
|
|
+ }
|
|
|
+ if (companys.endsWith("ZGS")) {
|
|
|
+ currentqw.eq("company_id", companys);
|
|
|
+ } else {
|
|
|
+ currentqw.eq("region_id", companys);
|
|
|
+ }
|
|
|
+ currentqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ List<ProEconPowerstationInfoDay5> currentList = proEconPowerstationInfoDay5Service.list(currentqw);
|
|
|
+ currentqw.clear();
|
|
|
+ currentqw.select("foreign_key_id,max(record_date) record_date,sum(rswdldb) yswdldb");
|
|
|
+ currentqw.eq("foreign_key_id", companys + type);
|
|
|
+ currentqw.eq("to_char(record_date,'yyyy')", year);
|
|
|
+ currentqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ currentList.addAll(proEconPowerstationInfoDay5Service.list(currentqw));
|
|
|
+
|
|
|
+ int subYear = Integer.parseInt(year) - 1;
|
|
|
+ QueryWrapper<ProEconPowerstationInfoDay5> sameperiodqw = new QueryWrapper<>();
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rswdldb) yswdldb");
|
|
|
+ sameperiodqw.eq("location", "wp");
|
|
|
+ if (type.equals("-1")) {
|
|
|
+ currentqw.like("foreign_key_id", "_FDC_");
|
|
|
+ } else {
|
|
|
+ currentqw.like("foreign_key_id", "_GDC_");
|
|
|
+ }
|
|
|
+ if (companys.endsWith("ZGS")) {
|
|
|
+ currentqw.eq("company_id", companys);
|
|
|
+ } else {
|
|
|
+ currentqw.eq("region_id", companys);
|
|
|
+ }
|
|
|
+ sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
+ sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ List<ProEconPowerstationInfoDay5> sameperiodList = proEconPowerstationInfoDay5Service.list(sameperiodqw);
|
|
|
+ sameperiodqw.clear();
|
|
|
+ sameperiodqw.select("foreign_key_id,max(record_date) record_date,sum(rswdldb) yswdldb");
|
|
|
+ sameperiodqw.eq("foreign_key_id", companys + type);
|
|
|
+ sameperiodqw.eq("to_char(record_date,'yyyy')", String.valueOf(subYear));
|
|
|
+ sameperiodqw.groupBy("to_char(record_date,'yyyy-MM'),foreign_key_id");
|
|
|
+ sameperiodList.addAll(proEconPowerstationInfoDay5Service.list(sameperiodqw));
|
|
|
+
|
|
|
+ //合并当月与同期数据为返回结果
|
|
|
+ List<SpecificTargetVo> resultList = new ArrayList<>();
|
|
|
+
|
|
|
+ currentList.stream().forEach(i -> {
|
|
|
+ SpecificTargetVo vo = new SpecificTargetVo();
|
|
|
+ String wpid = i.getForeignKeyId();
|
|
|
+ vo.setWpid(wpid);
|
|
|
+ if (wpid.contains("_ZGS")) {
|
|
|
+ vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ } else if (wpid.contains("_RGN")) {
|
|
|
+ vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+ } else {
|
|
|
+ vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+ }
|
|
|
+ vo.setYear(DateUtils.getYear(i.getRecordDate()));
|
|
|
+ vo.setMonth(DateUtils.getMonth(i.getRecordDate()));
|
|
|
+ vo.setCurrent(DoubleUtils.keepPrecision(i.getYswdldb().doubleValue() / 10000, 2));
|
|
|
+ resultList.add(vo);
|
|
|
+ });
|
|
|
+ resultList.stream().forEach(i -> {
|
|
|
+ Optional<ProEconPowerstationInfoDay5> optional = sameperiodList.stream()
|
|
|
+ .filter(j -> j.getForeignKeyId().equals(i.getWpid()) && i.getMonth().equals(DateUtils.getMonthFromDate(j.getRecordDate())))
|
|
|
+ .findFirst();
|
|
|
+ if (optional.isPresent()) {
|
|
|
+ ProEconPowerstationInfoDay5 tqinfoday = optional.get();
|
|
|
+ i.setSameperiod(DoubleUtils.keepPrecision(tqinfoday.getYswdldb().doubleValue() / 10000, 2));
|
|
|
+ i.setCompare(i.getCurrent().compareTo(i.getSameperiod()));
|
|
|
+ } else {
|
|
|
+ i.setSameperiod(0.0);
|
|
|
+ i.setCompare(0);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ List<SpecificTarget> resultendList = new ArrayList<>();
|
|
|
+
|
|
|
+ Map<String, Map<Integer, SpecificTargetVo>> map = new HashMap<>();
|
|
|
+
|
|
|
+ resultList.stream().forEach(i -> {
|
|
|
+ if (map.containsKey(i.getWpid())) {
|
|
|
+ Map<Integer, SpecificTargetVo> integerListMap = map.get(i.getWpid());
|
|
|
+ if (!integerListMap.containsKey(i.getMonth())) {
|
|
|
+ map.get(i.getWpid()).put(i.getMonth(), i);
|
|
|
+ } else {
|
|
|
+
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ Map<Integer, SpecificTargetVo> tempMap = new HashMap<>();
|
|
|
+ tempMap.put(i.getMonth(), i);
|
|
|
+ map.put(i.getWpid(), tempMap);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ Set<String> wpids = map.keySet();
|
|
|
+ if (StringUtils.isNotNull(wpids)) {
|
|
|
+ wpids.stream().forEach(wpid -> {
|
|
|
+ SpecificTarget vo = new SpecificTarget();
|
|
|
+ vo.setWpid(wpid);
|
|
|
+ int orderNum = 100;
|
|
|
+ if (wpid.contains("_ZGS")) {
|
|
|
+ vo.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ } else if (wpid.contains("_RGN")) {
|
|
|
+ vo.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+ } else {
|
|
|
+ vo.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+ orderNum = CacheContext.wpmap.get(wpid).getOrderNum();
|
|
|
+ }
|
|
|
+ vo.setOrderNum(orderNum);
|
|
|
+ List<SpecificTargetVo> tempList = new ArrayList<>();
|
|
|
+
|
|
|
+ Map<Integer, SpecificTargetVo> listMap = map.get(wpid);
|
|
|
+ for (int x = 1; x <= 12; x++) {
|
|
|
+ if (listMap.containsKey(x)) {
|
|
|
+ tempList.add(listMap.get(x));
|
|
|
+ } else {
|
|
|
+ SpecificTargetVo vo1 = new SpecificTargetVo();
|
|
|
+ vo1.setWpid(wpid);
|
|
|
+ if (wpid.contains("_ZGS")) {
|
|
|
+ vo1.setWpname(CacheContext.cpmap.get(companys).getAname());
|
|
|
+ } else if (wpid.contains("_RGN")) {
|
|
|
+ vo1.setWpname(CacheContext.rgmap.get(companys).getAname());
|
|
|
+ } else {
|
|
|
+ vo1.setWpname(CacheContext.wpmap.get(wpid).getAname());
|
|
|
+ }
|
|
|
+ vo1.setYear(Integer.parseInt(year));
|
|
|
+ vo1.setMonth(x);
|
|
|
+ tempList.add(vo1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ vo.setTargetList(tempList);
|
|
|
+ resultendList.add(vo);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultendList, "orderNum", SortUtils.ASC);
|
|
|
+
|
|
|
+ return resultendList;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
public List<SpecificTarget> gzsslList(String companys, String type, String year) {
|
|
|
//获取年份所有当月的数据
|
|
|
QueryWrapper<ProEconPowerstationInfoDay1> currentqw = new QueryWrapper<>();
|