1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace iWareDataCore.BASE.EnumType
| {
| /// <summary>
| /// 库位类型
| /// </summary>
| public enum EPlaceType
| {
| 普通库位 = 4,
| 入库口,
| 出库口,
| 输送机端口,
| 不合格缓存位=17,
| 输送机,
| 输送线 = 99
|
| }
| }
|
|