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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEAWCS_Common.LocationEnum
| {
| public enum LocationTypeEnum
| {
| /// <summary>
| /// 正常货位
| /// </summary>
| [Description("正常货位")]
| Normal = 1,
|
| /// <summary>
| /// 暂存位
| /// </summary>
| [Description("暂存位")]
| Feeding= 2,
|
| /// <summary>
| /// 入库口货位
| /// </summary>
| [Description("提升机")]
| In = 3,
|
| /// <summary>
| /// 空车出库口
| /// </summary>
| [Description("输送线")]
| OutEmpty = 4,
|
| /// <summary>
| /// 组立机位置
| /// </summary>
| [Description("组立机")]
| OutWorkUnit = 5
| }
| }
|
|