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,
        /// 
        /// 天车入库取货完成
        /// 
        [Description("天车入库取货完成")]
        Line_Ingrab = 210,
        /// 
        /// 天车入库取货执行中
        /// 
        [Description("天车入库取货执行中")]
        Line_InGrabExecuting = 220,
        /// 
        /// 天车入库放货执行中
        /// 
        [Description("天车入库放货执行中")]
        Line_InDownExecuting = 221,
        /// 
        /// 天车入库完成
        /// 
        [Description("天车入库完成")]
        Line_InFinish = 225,
        /// 
        /// 入库任务完成
        /// 
        [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_OutGrabExecuting = 120,
        /// 
        /// 天车出库放货执行中
        /// 
        [Description("天车出库放货执行中")]
        Line_OutWownExecuting = 130,
        /// 
        /// 出库任务完成
        /// 
        [Description("出库任务完成")]
        OutFinish = 190,
        /// 
        /// 出库任务挂起
        /// 
        [Description("出库任务挂起")]
        OutPending = 197,
        /// 
        /// 出库任务取消
        /// 
        [Description("出库任务取消")]
        OutCancel = 198,
        /// 
        /// 出库任务异常
        /// 
        [Description("出库任务异常")]
        OutException = 199,
    }
}