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("无货待命")]
| Empty = 100,
| /// <summary>
| /// 有货待命
| /// </summary>
| [Description("有货待命")]
| Stored = 200,
| /// <summary>
| /// 故障 1000 - 2000
| /// </summary>
| [Description("故障")]
| Breakdown = 1000,
| /// <summary>
| /// 手动
| /// </summary>
| [Description("手动")]
| Manual = 2000,
| /// <summary>
| /// 急停
| /// </summary>
| [Description("急停")]
| Scram = 3000,
| }
| }
|
|