using System.ComponentModel; namespace iWare.Wms.Core { /// /// 账号类型 /// public enum AdminType { /// /// 超级管理员 /// [Description("超级管理员")] SuperAdmin = 1, /// /// 管理员 /// [Description("管理员")] Admin = 2, /// /// 普通账号 /// [Description("普通账号")] None = 3 } }