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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEAWCS_DTO.Enum
| {
| public enum PlatformStationEnum
| {
| /// <summary>
| /// 入库口
| /// </summary>
| [Description("入库口")]
| BoardLoad = 1,
| /// <summary>
| /// 出库口
| /// </summary>
| [Description("出库口")]
| BoardUnload = 2,
| /// <summary>
| /// RGV入库站台
| /// </summary>
| [Description("RGV入库站台")]
| BoardStore = 3,
| /// <summary>
| /// RGV出库站台
| /// </summary>
| [Description("RGV出库站台")]
| PadUse = 4,
| /// <summary>
| /// 堆垛机入库站台
| /// </summary>
| [Description("堆垛机入库站台")]
| PadRecycle = 5,
| /// <summary>
| /// 堆垛机出库站台
| /// </summary>
| [Description("堆垛机出库站台")]
| PadStore = 6,
|
| /// <summary>
| /// 空托入库站台
| /// </summary>
| [Description("空托入库站台")]
| EmptyRecycle = 7,
| /// <summary>
| /// 空托出库站台
| /// </summary>
| [Description("空托出库站台")]
| EmptyStore = 8,
| /// <summary>
| /// 检修缓存台
| /// </summary>
| [Description("检修缓存台")]
| MaintenanceoutStore = 9,
|
|
| }
|
|
| }
|
|