GroupUserRoleTyeConst.cs 350 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace GxPress.EnumConst
  6. {
  7. public enum GroupUserRoleTyeConst
  8. {
  9. [Description("超级管理员")]
  10. SuperAdmin = 1,
  11. [Description("管理员")]
  12. Admin = 2,
  13. [Description("普通")]
  14. General = 3
  15. }
  16. }