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
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace yunneiWCS.EnumDefine
| {
| enum positionType
| {
| 库口 = 0,
| 空库位 = 1,
| 缸体 = 2,
| 缸盖 = 3,
| 缸体空托盘 = 4,
| 缸盖空托盘 = 5,
| 空托盘 = 6,
| 缸盖上线点 = 7,
| 缸体上线点 = 8,
| 余料回库 = 9,
| /// <summary>
| /// 虚拟库位 【Editby shaocx,2022-02-05】
| /// </summary>
| 虚拟库位 = 10
| }
| }
|
|