1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| using System.ComponentModel;
| using System.ComponentModel.DataAnnotations;
|
| namespace Yw.Vmo
| {
| public enum eAdminType
| {
| //
| // 摘要:
| // 常规
| [Display(Name = "常规")]
| [Description("常规")]
| Normal = 0,
|
| //
| // 摘要:
| // 管理
| [Display(Name = "管理")]
| [Description("管理")]
| Admin = 1,
|
| //
| // 摘要:
| // 系统
| [Display(Name = "系统")]
| [Description("系统")]
| System = 99
| }
| }
|
|