using System;
using System.Collections.Generic;
using System.Text;
namespace WIDESEA_Common
{
public enum AGVTaskStateEnum
{
///
/// 已下发待回复
///
Wait,
///
/// 起点执行中
///
Executing = 1,
///
/// 起点已完成
///
Complete = 2,
///
/// 终点执行中
///
Executing1 = 3,
///
/// 终点已完成
///
Complete1 = 4,
///
/// 已下发
///
SendOut,
///
/// 已创建未执行
///
Create,
///
/// 异常
///
Abnormal,
///
/// 编辑中
///
Editing,
///
/// 更改任务等级异常(RCS收到的现有任务更改指令无法执行)
///
EditAbnormal,
///
/// 执行异常(RCS已收到新下发的任务但无法执行)
///
ExecutAbnormal,
///
/// 取消
///
Cancel,
///
/// 待取消
///
WaitCancel,
///
/// 取消异常(RCS收到的现有任务取消指令无法执行)
///
CancelAbnormal,
///
/// 取消待回复
///
WaitReply,
///
/// 队列中
///
Queue,
}
}