This commit is contained in:
Lemon
2026-08-11 16:19:16 +08:00
parent e91b530517
commit 9dfc12c5a7
4 changed files with 3 additions and 15 deletions

View File

@@ -56,6 +56,7 @@ public class BusinessConnectorInfoController extends BaseController {
public List<String> getStationIdListByAuthorization() {
// 权限过滤
AuthorizedDeptVO authorizedMap = UserUtils.getAuthorizedMap();
logger.info("BusinessConnectorInfoController authorizedMap: {}", JSONObject.toJSONString(authorizedMap));
if (authorizedMap == null) {
// 为空表示没有权限,返回空数组
return new ArrayList<>();

View File

@@ -71,6 +71,7 @@ public class BusinessFinancialController extends BaseController {
public List<String> getStationIdListByAuthorization() {
// 权限过滤
AuthorizedDeptVO authorizedMap = UserUtils.getAuthorizedMap();
logger.info("BusinessFinancialController authorizedMap: {}", JSONObject.toJSONString(authorizedMap));
if (authorizedMap == null) {
// 为空表示没有权限,返回空数组
return new ArrayList<>();

View File

@@ -54,6 +54,7 @@ public class BusinessStationInfoController extends BaseController {
public List<String> getStationIdListByAuthorization() {
// 权限过滤
AuthorizedDeptVO authorizedMap = UserUtils.getAuthorizedMap();
logger.info("BusinessStationInfoController authorizedMap: {}", JSONObject.toJSONString(authorizedMap));
if (authorizedMap == null) {
// 为空表示没有权限,返回空数组
return new ArrayList<>();