using System.ComponentModel; namespace Admin.NET.Core { /// /// 性别 /// public enum Class { /// /// 一班 /// [Description("一班")] 一班 = 1, /// /// 二班 /// [Description("二班")] 二班 = 2 } }