duheng
2024-11-08 c2efb4c36e616e750b835ea3e87d890e47814fd1
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
    }
}