|
@@ -27,7 +27,7 @@ public class TokenService {
|
|
|
|
|
|
public static Map<String, List<ProBasicWeatherStation>> sessionWsMap = new ConcurrentHashMap<>();
|
|
public static Map<String, List<ProBasicWeatherStation>> sessionWsMap = new ConcurrentHashMap<>();
|
|
public static Map<String, List<ProBasicWeatherStation>> sessionWeMap = new ConcurrentHashMap<>();
|
|
public static Map<String, List<ProBasicWeatherStation>> sessionWeMap = new ConcurrentHashMap<>();
|
|
-
|
|
|
|
|
|
+ public static Map<String, List<ProBasicProject>> sessionPjMap = new ConcurrentHashMap<>();
|
|
public static Map<String, TokenVo> sessionMap = new ConcurrentHashMap<>();
|
|
public static Map<String, TokenVo> sessionMap = new ConcurrentHashMap<>();
|
|
|
|
|
|
|
|
|
|
@@ -166,9 +166,7 @@ public class TokenService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- } else if (depId.equals("0")) {
|
|
|
|
- wplist = sessionWpMap.get(token);
|
|
|
|
- } else if (depId.equals("0")) {
|
|
|
|
|
|
+ } else if (depId.equals("0")) {
|
|
List<ProBasicPowerstation> wpls = CacheContext.wpls;
|
|
List<ProBasicPowerstation> wpls = CacheContext.wpls;
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
ProBasicPowerstation newWp = new ProBasicPowerstation();
|
|
ProBasicPowerstation newWp = new ProBasicPowerstation();
|
|
@@ -348,77 +346,82 @@ public class TokenService {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- public List<ProBasicWeatherStation> getWswpls(HttpServletRequest request) {
|
|
|
|
|
|
+ public List<ProBasicProject> gePjls(HttpServletRequest request) {
|
|
String token = request.getHeader("token");
|
|
String token = request.getHeader("token");
|
|
String userId = request.getHeader("userId");
|
|
String userId = request.getHeader("userId");
|
|
- List<ProBasicWeatherStation> wplist = new ArrayList<>();
|
|
|
|
|
|
|
|
- if (StringUtils.notEmp(token) && StringUtils.notEmp(userId)) {
|
|
|
|
- if (!sessionWsMap.containsKey(token)) {
|
|
|
|
|
|
+ List<ProBasicProject> pjlist = new ArrayList<>();
|
|
|
|
+ if (StringUtils.notEmp(token) && StringUtils.notEmp(token)) {
|
|
|
|
+ if (sessionMap.containsKey(token) && !sessionPjMap.containsKey(token)) {
|
|
|
|
|
|
List<String> depls = sysUserService.getUserByuserId(Long.valueOf(userId));
|
|
List<String> depls = sysUserService.getUserByuserId(Long.valueOf(userId));
|
|
if (!depls.isEmpty()) {
|
|
if (!depls.isEmpty()) {
|
|
String depId = depls.get(0);
|
|
String depId = depls.get(0);
|
|
|
|
|
|
- if (CacheContext.wpmap.containsKey(depId)) {
|
|
|
|
- for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
|
- if (subStation.getWindpowerstationId().equals(depId)) {
|
|
|
|
- ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
|
- BeanUtil.copyProperties(subStation, newSub);
|
|
|
|
- wplist.add(newSub);
|
|
|
|
- }
|
|
|
|
|
|
+ if (CacheContext.wppromap.containsKey(depId)) {
|
|
|
|
+
|
|
|
|
+ List<ProBasicProject> pjls = CacheContext.wppromap.get(depId);
|
|
|
|
+ for(ProBasicProject pj:pjls)
|
|
|
|
+ {
|
|
|
|
+ ProBasicProject newpj = new ProBasicProject();
|
|
|
|
+ BeanUtil.copyProperties(pj, newpj);
|
|
|
|
+ pjlist.add(newpj);
|
|
}
|
|
}
|
|
} else if (CacheContext.cpwpmap.containsKey(depId)) {
|
|
} else if (CacheContext.cpwpmap.containsKey(depId)) {
|
|
List<ProBasicPowerstation> wpls = CacheContext.cpwpmap.get(depId);
|
|
List<ProBasicPowerstation> wpls = CacheContext.cpwpmap.get(depId);
|
|
-
|
|
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
- for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
|
- if (subStation.getWindpowerstationId().equals(wp.getId())) {
|
|
|
|
- ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
|
- BeanUtil.copyProperties(subStation, newSub);
|
|
|
|
- wplist.add(newSub);
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
|
|
+ List<ProBasicProject> pjls = CacheContext.wppromap.get(wp.getId());
|
|
|
|
+ for(ProBasicProject pj:pjls)
|
|
|
|
+ {
|
|
|
|
+ ProBasicProject newpj = new ProBasicProject();
|
|
|
|
+ BeanUtil.copyProperties(pj, newpj);
|
|
|
|
+ pjlist.add(newpj);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
} else if (CacheContext.rgmap.containsKey(depId)) {
|
|
} else if (CacheContext.rgmap.containsKey(depId)) {
|
|
List<ProBasicCompany> rgcpls = CacheContext.rgcpmap.get(depId);
|
|
List<ProBasicCompany> rgcpls = CacheContext.rgcpmap.get(depId);
|
|
for (ProBasicCompany cp : rgcpls) {
|
|
for (ProBasicCompany cp : rgcpls) {
|
|
List<ProBasicPowerstation> wpls = CacheContext.cpwpmap.get(cp.getId());
|
|
List<ProBasicPowerstation> wpls = CacheContext.cpwpmap.get(cp.getId());
|
|
-
|
|
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
for (ProBasicPowerstation wp : wpls) {
|
|
- for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
|
- if (subStation.getWindpowerstationId().equals(wp.getId())) {
|
|
|
|
- ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
|
- BeanUtil.copyProperties(subStation, newSub);
|
|
|
|
- wplist.add(newSub);
|
|
|
|
- break;
|
|
|
|
- }
|
|
|
|
|
|
+ List<ProBasicProject> pjls = CacheContext.wppromap.get(wp.getId());
|
|
|
|
+ for(ProBasicProject pj:pjls)
|
|
|
|
+ {
|
|
|
|
+ ProBasicProject newpj = new ProBasicProject();
|
|
|
|
+ BeanUtil.copyProperties(pj, newpj);
|
|
|
|
+ pjlist.add(newpj);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- } else if (depId.equals("0")) {
|
|
|
|
- for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
|
- ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
|
- BeanUtil.copyProperties(subStation, newSub);
|
|
|
|
- wplist.add(newSub);
|
|
|
|
|
|
+
|
|
|
|
+ }else if (depId.equals("0")) {
|
|
|
|
+ List<ProBasicPowerstation> wpls = CacheContext.wpls;
|
|
|
|
+ for (ProBasicPowerstation wp : wpls) {
|
|
|
|
+ List<ProBasicProject> pjls = CacheContext.wppromap.get(wp.getId());
|
|
|
|
+ for(ProBasicProject pj:pjls)
|
|
|
|
+ {
|
|
|
|
+ ProBasicProject newpj = new ProBasicProject();
|
|
|
|
+ BeanUtil.copyProperties(pj, newpj);
|
|
|
|
+ pjlist.add(newpj);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- sessionWsMap.put(token, wplist);
|
|
|
|
- } else if (sessionMap.containsKey(token) && sessionWsMap.containsKey(token)) {
|
|
|
|
- wplist = sessionWsMap.get(token);
|
|
|
|
-
|
|
|
|
|
|
+ sessionPjMap.put(token, pjlist);
|
|
|
|
+ } else if (sessionPjMap.containsKey(token) && sessionPjMap.containsKey(token)) {
|
|
|
|
+ pjlist = sessionPjMap.get(token);
|
|
}
|
|
}
|
|
|
|
+
|
|
} else {
|
|
} else {
|
|
- for (ProBasicWeatherStation subStation : CacheContext.weawpls) {
|
|
|
|
- ProBasicWeatherStation newSub = new ProBasicWeatherStation();
|
|
|
|
- BeanUtil.copyProperties(subStation, newSub);
|
|
|
|
- wplist.add(newSub);
|
|
|
|
|
|
+ List<ProBasicProject> pjls = CacheContext.pjls;
|
|
|
|
+ for (ProBasicProject wp : pjls) {
|
|
|
|
+ ProBasicProject newWp = new ProBasicProject();
|
|
|
|
+ BeanUtil.copyProperties(wp, newWp);
|
|
|
|
+ pjlist.add(newWp);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- return wplist;
|
|
|
|
|
|
+ return pjlist;
|
|
}
|
|
}
|
|
}
|
|
}
|