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 yunneiWCS.PLC.Srm
| {
| /// <summary>
| /// 任务执行
| /// </summary>
| public enum srmTaskExcute
| {
| 复位 = 1,
| 取货中 = 2,
| 到位取货 = 3,
| 放货中 = 4,
| 到位放货 = 5,
| 放货完成 = 6,
| 异常结束 = 7
| }
| }
|
|