using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common
{
public static class TaskStateConst
{
///
/// 任务待下发
///
public const int PendingDispatch = 1;
///
/// 输送线执行中
///
public const int ConveyorInProgress = 2;
///
/// 输送线完成
///
public const int ConveyorCompleted = 3;
///
/// AGV执行中
///
public const int AGVInProgress = 4;
///
/// AGV完成
///
public const int AGVCompleted = 5;
///
/// 堆垛机执行中
///
public const int StackerInProgress = 6;
///
/// 堆垛机完成
///
public const int StackerCompleted = 7;
///
/// 任务完成
///
public const int TaskCompleted = 8;
///
/// 任务取消
///
public const int TaskCancelled = 9;
}
}