1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using System.ComponentModel;
| using System.ComponentModel.DataAnnotations;
|
| namespace Yw.Vmo
| {
| public enum eUseStatus
| {
| //
| // 摘要:
| // 禁用
| [Display(Name = "禁用")]
| [Description("禁用")]
| Disable,
|
| //
| // 摘要:
| // 启用
| [Display(Name = "启用")]
| [Description("启用")]
| Enable
| }
| }
|
|