qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA_Common
{
    public enum AGVTaskStateEnum
    {
        /// <summary>
        /// 已下发待回复
        /// </summary>
        Wait,
        /// <summary>
        /// 已下发
        /// </summary>
        SendOut,
        /// <summary>
        /// 已创建未执行
        /// </summary>
        Create,
        /// <summary>
        /// 起点执行中
        /// </summary>
        Executing,
        /// <summary>
        /// 起点已完成
        /// </summary>
        Complete,
        /// <summary>
        /// 终点执行中
        /// </summary>
        Executing1,
        /// <summary>
        /// 终点已完成
        /// </summary>
        Complete1,
        /// <summary>
        /// 异常
        /// </summary>
        Abnormal,
        /// <summary>
        /// 编辑中
        /// </summary>
        Editing,
        /// <summary>
        /// 更改任务等级异常(RCS收到的现有任务更改指令无法执行)
        /// </summary>
        EditAbnormal,
        /// <summary>
        /// 执行异常(RCS已收到新下发的任务但无法执行)
        /// </summary>
        ExecutAbnormal,
        /// <summary>
        /// 取消
        /// </summary>
        Cancel,
        /// <summary>
        /// 待取消
        /// </summary>
        WaitCancel,
        /// <summary>
        /// 取消异常(RCS收到的现有任务取消指令无法执行)
        /// </summary>
        CancelAbnormal,
        /// <summary>
        /// 取消待回复
        /// </summary>
        WaitReply
    }
}