schangxiang@126.com
2024-09-09 7b86e5ebce464179643a33a4bcd0b5b05a4a747b
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
using System.ComponentModel;
 
namespace iWare.Wms.Core
{
    /// <summary>
    /// 通知公告状态
    /// </summary>
    public enum NoticeStatus
    {
        /// <summary>
        /// 草稿
        /// </summary>
        [Description("草稿")]
        DRAFT = 0,
 
        /// <summary>
        /// 发布
        /// </summary>
        [Description("发布")]
        PUBLIC = 1,
 
        /// <summary>
        /// 撤回
        /// </summary>
        [Description("撤回")]
        CANCEL = 2,
 
        /// <summary>
        /// 删除
        /// </summary>
        [Description("删除")]
        DELETED = 3
    }
}