|
@@ -424,7 +424,7 @@ public class SysController {
|
|
}
|
|
}
|
|
Map<String, Object> map = new HashMap<>();
|
|
Map<String, Object> map = new HashMap<>();
|
|
map.put(SystemConstant.VERSION, SystemConstant.VERSION_VALUE);
|
|
map.put(SystemConstant.VERSION, SystemConstant.VERSION_VALUE);
|
|
- if (!SystemConstant.ADMIN_CODE_LIST.contains(code.toLowerCase())) {
|
|
|
|
|
|
+ if (StringUtils.isBlank(code) || !SystemConstant.ADMIN_CODE_LIST.contains(code.toLowerCase())) {
|
|
BasicSchool basicSchool = null;
|
|
BasicSchool basicSchool = null;
|
|
if (StringUtils.isNotBlank(code)) {
|
|
if (StringUtils.isNotBlank(code)) {
|
|
basicSchool = commonCacheService.schoolCache(code);
|
|
basicSchool = commonCacheService.schoolCache(code);
|