payne
2024-04-24 81ec65b31b86ca9d5590573485f3617b5d069c0a
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
    }
    
    
}