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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace iWareModel.EnumType.EDevice.AGV
| {
| /// <summary>
| /// AGV位置类型
| /// </summary>
| public enum AgvPositionType
| {
| [Description("00")]
| 位置编号 = 0,
| [Description("01")]
| 物料批次号 = 1,
| [Description("02")]
| 策略编号 = 2,
| [Description("03")]
| 货架编号 = 3,
| [Description("04")]
| 区域编号 = 4,
| [Description("05")]
| 仓位编号 = 5,
| [Description("06")]
| 巷道编号 = 6,
| [Description("07")]
| 容器编号 = 7,
| [Description("08")]
| 巷道策略 = 8,
| [Description("09")]
| 巷道区域 = 9
| }
| }
|
|