using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JY.Model.Enums { /// /// 用户权限 /// public enum EnumAutority { /// /// 管理员 /// [Description("管理员")] Administrator = 1, /// /// 工程师 /// [Description("工程师")] Engineer = 2, /// /// 操作员 /// [Description("操作员")] Operator = 3, None = 4 } }