using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Common.TaskEnum
{
    public enum TaskInStatusEnum
    {
        /// 
        /// 新建入库任务
        /// 
        [Description("新建入库任务")]
        InNew = 200,
        ///// 
        ///// AGV入库执行中
        ///// 
        //[Description("AGV入库执行中")]
        //AGV_InExecuting = 210,
        ///// 
        ///// AGV入库完成
        ///// 
        //[Description("AGV搬运完成")]
        //AGV_InFinish = 215,
        /// 
        /// 输送线入库执行中
        /// 
        [Description("输送线入库执行中")]
        Line_InExecuting = 220,
        /// 
        /// 输送线入库完成
        /// 
        [Description("输送线输送完成")]
        Line_InFinish = 225,
        /// 
        /// 堆垛机入库执行中
        /// 
        [Description("堆垛机入库执行中")]
        SC_InExecuting = 230,
        /// 
        /// 堆垛机入库完成
        /// 
        [Description("堆垛机入库完成")]
        SC_InFinish = 235,
        /// 
        /// 入库任务完成
        /// 
        [Description("入库任务完成")]
        InFinish = 290,
        /// 
        /// 入库任务挂起
        /// 
        [Description("入库任务挂起")]
        InPending = 297,
        /// 
        /// 入库任务取消
        /// 
        [Description("入库任务取消")]
        InCancel = 298,
        /// 
        /// 入库任务异常
        /// 
        [Description("入库任务异常")]
        InException = 299,
    }
    public enum TaskOutStatusEnum
    {
        /// 
        /// 新建出库任务
        /// 
        [Description("新建出库任务")]
        OutNew = 100,
        /// 
        /// 堆垛机出库执行中
        /// 
        [Description("堆垛机出库执行中")]
        SC_OutExecuting = 110,
        /// 
        /// 堆垛机出库完成
        /// 
        [Description("堆垛机出库完成")]
        SC_OutFinish = 115,
        /// 
        /// 输送线出库执行中
        /// 
        [Description("输送线出库执行中")]
        Line_OutExecuting = 120,
        /// 
        /// 输送线出库完成
        /// 
        [Description("输送线输送完成")]
        Line_OutFinish = 125,
        ///// 
        ///// AGV出库执行中
        ///// 
        //[Description("AGV出库执行中")]
        //AGV_OutExecuting = 130,
        ///// 
        ///// AGV出库完成
        ///// 
        //[Description("AGV搬运完成")]
        //AGV_OutFinish = 135,
        /// 
        /// 出库任务完成
        /// 
        [Description("出库任务完成")]
        OutFinish = 190,
        /// 
        /// 出库任务挂起
        /// 
        [Description("出库任务挂起")]
        OutPending = 197,
        /// 
        /// 出库任务取消
        /// 
        [Description("出库任务取消")]
        OutCancel = 198,
        /// 
        /// 出库任务异常
        /// 
        [Description("出库任务异常")]
        OutException = 199,
    }
}