using System.ComponentModel; namespace WMS.Info { /// /// 描 述:用户类型 /// [Description("用户类型")] public enum EUserType { /// /// 超级用户 /// [Description("超级用户")] Super = 1, /// /// 系统管理员 /// [Description("系统管理员")] System = 2, /// /// 管理员, /// [Description("业务管理员")] SuperAdmin = 3, /// /// 普通用户 /// [Description("普通用户")] User = 4 } }