Blame view

netcore/src/Modularity/Common/NCC.Common/Enum/NoticeStatus.cs 678 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
31
32
33
34
35
36
  using NCC.Dependency;
  using System.ComponentModel;
  
  namespace NCC.Common.Enum
  {
      /// <summary>
      /// 通知公告状态
      /// </summary>
      [SuppressSniffer]
      public enum NoticeStatus
      {
          /// <summary>
          /// 草稿
          /// </summary>
          [Description("草稿")]
          DRAFT = 0,
  
          /// <summary>
          /// 发布
          /// </summary>
          [Description("发布")]
          PUBLIC = 1,
  
          /// <summary>
          /// 撤回
          /// </summary>
          [Description("撤回")]
          CANCEL = 2,
  
          /// <summary>
          /// 删除
          /// </summary>
          [Description("删除")]
          DELETED = 3
      }
  }