schangxiang@126.com
2024-12-20 01c3a4658026e9c3ed9daaf1f1b27da368ab11a9
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
37
38
39
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareModel.EnumType.WMS
{
    /// <summary>
    /// 推送状态  
    /// </summary>
    public enum PushStatusEnum
    {
        /// <summary>
        /// 未推送
        /// </summary>
        [Description("未推送")]
        NotPush = 0,
 
        /// <summary>
        /// 推送中
        /// </summary>
        [Description("推送中")]
        Pushing = 1,
 
        /// <summary>
        /// 推送成功
        /// </summary>
        [Description("推送成功")]
        PushSuccess = 2,
 
        /// <summary>
        /// 推送失败
        /// </summary>
        [Description("推送失败")]
        PushFail = 3,
    }
}