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
| 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 AgvStationEnum
| {
| /// <summary>
| /// 入库口
| /// </summary>
| [Description("入库口")]
| BoardLoad = 1,
| /// <summary>
| /// HCJ入库站台
| /// </summary>
| [Description("HCJ入库站台")]
| HCJUnload = 2,
| /// <summary>
| /// 过道入库站台(外)
| /// </summary>
| [Description("过道入库站台(外)")]
| Aisleplatform_Outside = 3,
| /// <summary>
| /// 入库站台
| /// </summary>
| [Description("入库站台")]
| Storageplatform = 4,
|
| /// <summary>
| /// 过道HCJ站台
| /// </summary>
| [Description("过道HCJ站台")]
| HCJAisleplatform = 5,
| /// <summary>
| /// 过道入库站台内)
| /// </summary>
| [Description("过道入库站台(内)")]
| Aisleplatform_Medial = 6,
| }
| }
|
|