|
@@ -194,6 +194,7 @@ public class CacheContext implements CommandLineRunner {
|
|
|
|
|
|
public static List<ProBasicPowerstationPoint> proBasicPowerstationPoint;
|
|
|
public static List<ProBasicEquipmentBranchPoint> proBasicEquipmentBranchPointList;
|
|
|
+ public static Map<String, ProBasicBranch> bnlsMap;
|
|
|
|
|
|
@Override
|
|
|
public void run(String... args) throws Exception {
|
|
@@ -216,6 +217,7 @@ public class CacheContext implements CommandLineRunner {
|
|
|
//Map<String, Object> pbotidMap = redisService.batchGetKeys(pbotids);
|
|
|
|
|
|
bnls = proBasicBranchService.list();
|
|
|
+ bnlsMap = bnls.stream().collect(Collectors.toMap(ProBasicBranch::getId, Function.identity()));
|
|
|
//List<String> bnlids = bnls.stream().map(bnl -> bnl.getId()).collect(Collectors.toList());
|
|
|
//Map<String, Object> objectMap = redisService.batchGetKeys(bnlids);
|
|
|
/*bnls.stream().forEach(bn -> {
|