|
@@ -3,6 +3,7 @@ package com.gyee.runeconomy.init;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.alibaba.fastjson.TypeReference;
|
|
import com.alibaba.fastjson.TypeReference;
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.gyee.common.model.StringUtils;
|
|
import com.gyee.common.model.StringUtils;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
import com.gyee.runeconomy.service.auto.*;
|
|
import com.gyee.runeconomy.service.auto.*;
|
|
@@ -311,8 +312,9 @@ public class CacheContext implements CommandLineRunner {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
- wtls = proBasicEquipmentService.list().stream().filter(i -> i.getIsable() == 1).collect(Collectors.toList());
|
|
|
|
|
|
+ QueryWrapper<ProBasicEquipment> queryWtWrapper = new QueryWrapper<>();
|
|
|
|
+ queryWtWrapper.orderByAsc("order_num");
|
|
|
|
+ wtls = proBasicEquipmentService.list(queryWtWrapper).stream().filter(i -> i.getIsable() == 1).collect(Collectors.toList());
|
|
logger.info(wtls.size() + "");
|
|
logger.info(wtls.size() + "");
|
|
wtls.forEach(wt -> {
|
|
wtls.forEach(wt -> {
|
|
if (modelMap.containsKey(wt.getModelId())) {
|
|
if (modelMap.containsKey(wt.getModelId())) {
|
|
@@ -416,7 +418,9 @@ public class CacheContext implements CommandLineRunner {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- pjls = proBasicProjectService.list().stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
|
|
|
|
+ QueryWrapper<ProBasicProject> queryPjWrapper = new QueryWrapper<>();
|
|
|
|
+ queryPjWrapper.orderByAsc("order_num");
|
|
|
|
+ pjls = proBasicProjectService.list(queryPjWrapper).stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
pjls.stream().forEach(p -> {
|
|
pjls.stream().forEach(p -> {
|
|
pjmap.put(p.getId(), p);
|
|
pjmap.put(p.getId(), p);
|
|
if (wppromap.containsKey(p.getWindpowerstationId())) {
|
|
if (wppromap.containsKey(p.getWindpowerstationId())) {
|
|
@@ -433,8 +437,9 @@ public class CacheContext implements CommandLineRunner {
|
|
|
|
|
|
});
|
|
});
|
|
projmap = pjls.stream().collect(Collectors.groupingBy(ProBasicProject::getWindpowerstationId));
|
|
projmap = pjls.stream().collect(Collectors.groupingBy(ProBasicProject::getWindpowerstationId));
|
|
-
|
|
|
|
- subwpls = proBasicSubStationService.list().stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
|
|
|
|
+ QueryWrapper<ProBasicSubStation> querySubWrapper = new QueryWrapper<>();
|
|
|
|
+ querySubWrapper.orderByAsc("order_num");
|
|
|
|
+ subwpls = proBasicSubStationService.list(querySubWrapper).stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
subwpls.stream().forEach(sub -> {
|
|
subwpls.stream().forEach(sub -> {
|
|
|
|
|
|
String subString = redisService.get(sub.getId());
|
|
String subString = redisService.get(sub.getId());
|
|
@@ -458,7 +463,9 @@ public class CacheContext implements CommandLineRunner {
|
|
|
|
|
|
});
|
|
});
|
|
//线路
|
|
//线路
|
|
- lnls = proBasicLineService.list().stream().filter(i -> StringUtils.isNotNull(pjmap.get(i.getProjectId())) && i.getIsAble() == 1).collect(Collectors.toList());
|
|
|
|
|
|
+ QueryWrapper<ProBasicLine> queryLnWrapper = new QueryWrapper<>();
|
|
|
|
+ queryLnWrapper.orderByAsc("order_num");
|
|
|
|
+ lnls = proBasicLineService.list(queryLnWrapper).stream().filter(i -> StringUtils.isNotNull(pjmap.get(i.getProjectId())) && i.getIsAble() == 1).collect(Collectors.toList());
|
|
lnls.stream().forEach(l -> {
|
|
lnls.stream().forEach(l -> {
|
|
lnmap.put(l.getId(), l);
|
|
lnmap.put(l.getId(), l);
|
|
if (prolinemap.containsKey(l.getProjectId())) {
|
|
if (prolinemap.containsKey(l.getProjectId())) {
|
|
@@ -476,9 +483,10 @@ public class CacheContext implements CommandLineRunner {
|
|
|
|
|
|
|
|
|
|
zwpls = proBasicWindpowerstationService.list().stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
zwpls = proBasicWindpowerstationService.list().stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
- ;
|
|
|
|
- wpls = proBasicWindpowerstationService.list().stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
|
|
- ;
|
|
|
|
|
|
+ QueryWrapper<ProBasicPowerstation> queryWpWrapper = new QueryWrapper<>();
|
|
|
|
+ queryWpWrapper.orderByAsc("order_num");
|
|
|
|
+ wpls = proBasicWindpowerstationService.list(queryWpWrapper).stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
|
|
+
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
if (cpwpmap.containsKey(wp.getCompanyId())) {
|
|
if (cpwpmap.containsKey(wp.getCompanyId())) {
|
|
cpwpmap.get(wp.getCompanyId()).add(wp);
|
|
cpwpmap.get(wp.getCompanyId()).add(wp);
|
|
@@ -488,6 +496,7 @@ public class CacheContext implements CommandLineRunner {
|
|
cpwpmap.put(wp.getCompanyId(), wps);
|
|
cpwpmap.put(wp.getCompanyId(), wps);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
meterpoints = proBasicMeterPointService.list().stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
meterpoints = proBasicMeterPointService.list().stream().filter(i -> i.getIsAble() == 1).collect(Collectors.toList());
|
|
meterpoints.stream().forEach(meterpoint -> {
|
|
meterpoints.stream().forEach(meterpoint -> {
|
|
meterpointMap.put(meterpoint.getId(), meterpoint);
|
|
meterpointMap.put(meterpoint.getId(), meterpoint);
|