PermissionNames.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. namespace VberAdmin.Authorization;
  2. public static class PermissionNames
  3. {
  4. public const string Vber = "Vber";
  5. public const string VberSystemMg = "Vber.SystemMg";
  6. public const string VberSystemMgTenantMg = "Vber.SystemMg.TenantMg";
  7. public const string VberSystemMgTenantMgQuery = "Vber.SystemMg.TenantMg.Query";
  8. public const string VberSystemMgTenantMgCreate = "Vber.SystemMg.TenantMg.Create";
  9. public const string VberSystemMgTenantMgUpdate = "Vber.SystemMg.TenantMg.Update";
  10. public const string VberSystemMgTenantMgDelete = "Vber.SystemMg.TenantMg.Delete";
  11. public const string VberSystemMgRoleMg = "Vber.SystemMg.RoleMg";
  12. public const string VberSystemMgRoleMgQuery = "Vber.SystemMg.RoleMg.Query";
  13. public const string VberSystemMgRoleMgCreate = "Vber.SystemMg.RoleMg.Create";
  14. public const string VberSystemMgRoleMgUpdate = "Vber.SystemMg.RoleMg.Update";
  15. public const string VberSystemMgRoleMgDelete = "Vber.SystemMg.RoleMg.Delete";
  16. public const string VberSystemMgUserMg = "Vber.SystemMg.UserMg";
  17. public const string VberSystemMgUserMgQuery = "Vber.SystemMg.UserMg.Query";
  18. public const string VberSystemMgUserMgCreate = "Vber.SystemMg.UserMg.Create";
  19. public const string VberSystemMgUserMgUpdate = "Vber.SystemMg.UserMg.Update";
  20. public const string VberSystemMgUserMgDelete = "Vber.SystemMg.UserMg.Delete";
  21. public const string VberSystemMgUserMgResetPassword = "Vber.SystemMg.UserMg.ResetPassword";
  22. public const string VberSystemMgUserMgResetLock = "Vber.SystemMg.UserMg.ResetLock";
  23. public const string VberSystemMgUserMgActivate = "Vber.SystemMg.UserMg.Activate";
  24. public const string VberSystemMgUserMgDeActivate = "Vber.SystemMg.UserMg.DeActivate";
  25. public const string VberSystemMgStateMg = "Vber.SystemMg.StateMg";
  26. public const string VberSystemMgStateMgQuery = "Vber.SystemMg.StateMg.Query";
  27. public const string VberSystemMgStateMgUpdate = "Vber.SystemMg.StateMg.Update";
  28. public const string VberSystemMgSettingMg = "Vber.SystemMg.SettingMg";
  29. public const string VberSystemMgSettingMgQuery = "Vber.SystemMg.SettingMg.Query";
  30. public const string VberSystemMgSettingMgUpdate = "Vber.SystemMg.SettingMg.Update";
  31. public const string VberSystemMgHelpMg = "Vber.SystemMg.HelpMg";
  32. public const string VberSystemMgHelpMgQuery = "Vber.SystemMg.HelpMg.Query";
  33. public const string VberSystemMgHelpMgCreate = "Vber.SystemMg.HelpMg.Create";
  34. public const string VberSystemMgHelpMgUpdate = "Vber.SystemMg.HelpMg.Update";
  35. public const string VberSystemMgHelpMgDelete = "Vber.SystemMg.HelpMg.Delete";
  36. public const string VberSystemMgFunctionMg = "Vber.SystemMg.FunctionMg";
  37. public const string VberSystemMgFunctionMgQuery = "Vber.SystemMg.FunctionMg.Query";
  38. public const string VberSystemMgFunctionMgUpdate = "Vber.SystemMg.FunctionMg.Update";
  39. public const string VberSystemMgFunctionMgMoveUp = "Vber.SystemMg.FunctionMg.MoveUp";
  40. public const string VberSystemMgFunctionMgMoveDown = "Vber.SystemMg.FunctionMg.MoveDown";
  41. public const string VberSystemMgFunctionMgRefresh = "Vber.SystemMg.FunctionMg.Refresh";
  42. public const string VberSystemMgNotificationMg = "Vber.SystemMg.NotificationMg";
  43. public const string VberSystemMgNotificationMgQuery = "Vber.SystemMg.NotificationMg.Query";
  44. public const string VberSystemMgNotificationMgSendNotification = "Vber.SystemMg.NotificationMg.SendNotification";
  45. public const string VberSystemMgWorkflowMg = "Vber.SystemMg.WorkflowMg";
  46. public const string VberSystemMgWorkflowMgQuery = "Vber.SystemMg.WorkflowMg.Query";
  47. public const string VberSystemMgWorkflowMgCreate = "Vber.SystemMg.WorkflowMg.Create";
  48. public const string VberSystemMgWorkflowMgUpdate = "Vber.SystemMg.WorkflowMg.Update";
  49. public const string VberSystemMgWorkflowMgDelete = "Vber.SystemMg.WorkflowMg.Delete";
  50. public const string VberMyWorkflowAuditMg = "Vber.MyWorkflowAuditMg";
  51. public const string VberMyWorkflowAuditMgQuery = "Vber.MyWorkflowAuditMg.Query";
  52. public const string VberMyWorkflowApplyMg = "Vber.MyWorkflowApplyMg";
  53. public const string VberMyWorkflowApplyMgQuery = "Vber.MyWorkflowApplyMg.Query";
  54. public const string VberSystemMgLogMg = "Vber.SystemMg.LogMg";
  55. public const string VberSystemMgLogMgQuery = "Vber.SystemMg.LogMg.Query";
  56. public const string VberUserHelpInfo = "Vber.UserHelpInfo";
  57. public const string VberSystemMgUserSysSetting = "Vber.SystemMg.UserSysSetting";
  58. public const string VberSystemMgUserSysSettingRefreshCache = "Vber.SystemMg.UserSysSetting.RefreshCache";
  59. public const string VberSystemMgUserSysSettingRefreshLang = "Vber.SystemMg.UserSysSetting.RefreshLang";
  60. }