1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace IWareCommon.Enum.Srm
| {
| public enum ESrmState
| {
| 空闲 = 0,
| 取货定位 = 1,
| 取货中 = 2,
| 放货定位 = 3,
| 放货中 = 4,
| 移动定位中 = 5,
| 放货完成 = 6,
| 报警空间但有货 = 7,
| 维修状态 = 98,
| 报警未自动 = 99,
| }
| }
|
|