dengjunjie
昨天 441b6f8d257a01b2998253ef0515a201777d7e68
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
40
41
42
43
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Common.ConveyorLineEnum
{
    public enum ConveyorStatus
    {
        /// <summary>
        /// 使能关闭
        /// </summary>
        [Description("使能关闭")]
        Enableoff,
        /// <summary>
        /// 有货待命
        /// </summary>
        [Description("有货待命")]
        Stored = 2,
        /// <summary>
        /// 等待指令
        /// </summary>
        [Description("等待指令")]
        Wait = 3,
        /// <summary>
        /// 故障  1000 - 2000
        /// </summary>
        [Description("故障")]
        Breakdown = 1000,
        /// <summary>
        /// 手动
        /// </summary>
        [Description("手动")]
        Manual = 2000,
        /// <summary>
        /// 急停
        /// </summary>
        [Description("急停")]
        Scram = 3000,
    }
}