using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Yw.Vmo { public enum eAdminType { // // 摘要: // 常规 [Display(Name = "常规")] [Description("常规")] Normal = 0, // // 摘要: // 管理 [Display(Name = "管理")] [Description("管理")] Admin = 1, // // 摘要: // 系统 [Display(Name = "系统")] [Description("系统")] System = 99 } }