feat(auth): 新增按组织ID授权的支持
Some checks failed
supersonic CentOS CI / build (21) (push) Has been cancelled
supersonic mac CI / build (21) (push) Has been cancelled
supersonic ubuntu CI / build (21) (push) Has been cancelled
supersonic windows CI / build (21) (push) Has been cancelled

在AuthGroup中增加authorizedOrgIds字段,支持组织级别的集中授权管理。
This commit is contained in:
jerryjzhang
2026-08-02 22:23:53 +08:00
parent de60be3908
commit ce904e329b

View File

@@ -19,4 +19,6 @@ public class AuthGroup {
private List<String> authorizedUsers; private List<String> authorizedUsers;
/** authorization Department Id */ /** authorization Department Id */
private List<String> authorizedDepartmentIds; private List<String> authorizedDepartmentIds;
/** authorization Organization Id (org-level centralized authorization) */
private List<String> authorizedOrgIds;
} }