Blame view

netcore/src/Modularity/Common/NCC.Common/Enum/CommonStatus.cs 557 Bytes
de2bd2f9   “wangming”   项目初始化
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
30
  using NCC.Dependency;
  using System.ComponentModel;
  
  namespace NCC.Common.Enum
  {
      /// <summary>
      /// 公共状态
      /// </summary>
      [SuppressSniffer]
      public enum CommonStatus
      {
          /// <summary>
          /// 正常
          /// </summary>
          [Description("正常")]
          ENABLE = 0,
  
          /// <summary>
          /// 停用
          /// </summary>
          [Description("停用")]
          DISABLE = 1,
  
          /// <summary>
          /// 删除
          /// </summary>
          [Description("删除")]
          DELETED = 2
      }
  }