| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- namespace VberAdmin.Authorization;
- public static class PermissionNames
- {
- public const string Vber = "Vber";
- public const string VberSystemMg = "Vber.SystemMg";
- public const string VberSystemMgTenantMg = "Vber.SystemMg.TenantMg";
- public const string VberSystemMgTenantMgQuery = "Vber.SystemMg.TenantMg.Query";
- public const string VberSystemMgTenantMgCreate = "Vber.SystemMg.TenantMg.Create";
- public const string VberSystemMgTenantMgUpdate = "Vber.SystemMg.TenantMg.Update";
- public const string VberSystemMgTenantMgDelete = "Vber.SystemMg.TenantMg.Delete";
- public const string VberSystemMgRoleMg = "Vber.SystemMg.RoleMg";
- public const string VberSystemMgRoleMgQuery = "Vber.SystemMg.RoleMg.Query";
- public const string VberSystemMgRoleMgCreate = "Vber.SystemMg.RoleMg.Create";
- public const string VberSystemMgRoleMgUpdate = "Vber.SystemMg.RoleMg.Update";
- public const string VberSystemMgRoleMgDelete = "Vber.SystemMg.RoleMg.Delete";
- public const string VberSystemMgUserMg = "Vber.SystemMg.UserMg";
- public const string VberSystemMgUserMgQuery = "Vber.SystemMg.UserMg.Query";
- public const string VberSystemMgUserMgCreate = "Vber.SystemMg.UserMg.Create";
- public const string VberSystemMgUserMgUpdate = "Vber.SystemMg.UserMg.Update";
- public const string VberSystemMgUserMgDelete = "Vber.SystemMg.UserMg.Delete";
- public const string VberSystemMgUserMgResetPassword = "Vber.SystemMg.UserMg.ResetPassword";
- public const string VberSystemMgUserMgResetLock = "Vber.SystemMg.UserMg.ResetLock";
- public const string VberSystemMgUserMgActivate = "Vber.SystemMg.UserMg.Activate";
- public const string VberSystemMgUserMgDeActivate = "Vber.SystemMg.UserMg.DeActivate";
- public const string VberSystemMgStateMg = "Vber.SystemMg.StateMg";
- public const string VberSystemMgStateMgQuery = "Vber.SystemMg.StateMg.Query";
- public const string VberSystemMgStateMgUpdate = "Vber.SystemMg.StateMg.Update";
- public const string VberSystemMgSettingMg = "Vber.SystemMg.SettingMg";
- public const string VberSystemMgSettingMgQuery = "Vber.SystemMg.SettingMg.Query";
- public const string VberSystemMgSettingMgUpdate = "Vber.SystemMg.SettingMg.Update";
- public const string VberSystemMgHelpMg = "Vber.SystemMg.HelpMg";
- public const string VberSystemMgHelpMgQuery = "Vber.SystemMg.HelpMg.Query";
- public const string VberSystemMgHelpMgCreate = "Vber.SystemMg.HelpMg.Create";
- public const string VberSystemMgHelpMgUpdate = "Vber.SystemMg.HelpMg.Update";
- public const string VberSystemMgHelpMgDelete = "Vber.SystemMg.HelpMg.Delete";
- public const string VberSystemMgFunctionMg = "Vber.SystemMg.FunctionMg";
- public const string VberSystemMgFunctionMgQuery = "Vber.SystemMg.FunctionMg.Query";
- public const string VberSystemMgFunctionMgUpdate = "Vber.SystemMg.FunctionMg.Update";
- public const string VberSystemMgFunctionMgMoveUp = "Vber.SystemMg.FunctionMg.MoveUp";
- public const string VberSystemMgFunctionMgMoveDown = "Vber.SystemMg.FunctionMg.MoveDown";
- public const string VberSystemMgFunctionMgRefresh = "Vber.SystemMg.FunctionMg.Refresh";
- public const string VberSystemMgNotificationMg = "Vber.SystemMg.NotificationMg";
- public const string VberSystemMgNotificationMgQuery = "Vber.SystemMg.NotificationMg.Query";
- public const string VberSystemMgNotificationMgSendNotification = "Vber.SystemMg.NotificationMg.SendNotification";
- public const string VberSystemMgWorkflowMg = "Vber.SystemMg.WorkflowMg";
- public const string VberSystemMgWorkflowMgQuery = "Vber.SystemMg.WorkflowMg.Query";
- public const string VberSystemMgWorkflowMgCreate = "Vber.SystemMg.WorkflowMg.Create";
- public const string VberSystemMgWorkflowMgUpdate = "Vber.SystemMg.WorkflowMg.Update";
- public const string VberSystemMgWorkflowMgDelete = "Vber.SystemMg.WorkflowMg.Delete";
- public const string VberMyWorkflowAuditMg = "Vber.MyWorkflowAuditMg";
- public const string VberMyWorkflowAuditMgQuery = "Vber.MyWorkflowAuditMg.Query";
- public const string VberMyWorkflowApplyMg = "Vber.MyWorkflowApplyMg";
- public const string VberMyWorkflowApplyMgQuery = "Vber.MyWorkflowApplyMg.Query";
- public const string VberSystemMgLogMg = "Vber.SystemMg.LogMg";
- public const string VberSystemMgLogMgQuery = "Vber.SystemMg.LogMg.Query";
- public const string VberUserHelpInfo = "Vber.UserHelpInfo";
- public const string VberSystemMgUserSysSetting = "Vber.SystemMg.UserSysSetting";
- public const string VberSystemMgUserSysSettingRefreshCache = "Vber.SystemMg.UserSysSetting.RefreshCache";
- public const string VberSystemMgUserSysSettingRefreshLang = "Vber.SystemMg.UserSysSetting.RefreshLang";
- }
|