schangxiang@126.com
2024-04-25 0343f06a2b1097662d12780829f247b094111320
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System.ComponentModel;
 
namespace Admin.NET.Core
{
    /// <summary>
    /// 性别
    /// </summary>
    public enum Class
    {
        /// <summary>
        /// 一班
        /// </summary>
        [Description("一班")]
        一班 = 1,
 
        /// <summary>
        /// 二班
        /// </summary>
        [Description("二班")]
        二班 = 2
    }
    
    
}