平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SysRoleConst.cs 345 B

3 months ago
123456789101112131415161718192021222324252627
  1. 
  2. //
  3. namespace SafeCampus.System;
  4. /// <summary>
  5. /// 角色常量
  6. /// </summary>
  7. public class SysRoleConst
  8. {
  9. /// <summary>
  10. /// 超级管理员
  11. /// </summary>
  12. public const string SUPER_ADMIN = "superAdmin";
  13. /// <summary>
  14. /// 业务管理员
  15. /// </summary>
  16. public const string BIZ_ADMIN = "bizAdmin";
  17. }