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 TaskInboundTypeEnum
    {
        /// 
        /// 入库
        /// 
        [Description("入库")]
        Inbound = 200,
        /// 
        /// 盘点入库
        /// 
        [Description("盘点入库")]
        InInventory = 201,
        /// 
        /// 分拣入库
        /// 
        [Description("分拣入库")]
        InPick = 202,
        /// 
        /// 质检入库
        /// 
        [Description("质检入库")]
        InQuality = 203,
        /// 
        /// 空托盘入库
        /// 
        [Description("空托盘入库")]
        InTray = 204,
        /// 
        /// NG入库
        /// 
        [Description("NG入库")]
        InNG = 205,
    }
    public enum TaskOutboundTypeEnum
    {
        /// 
        /// 出库
        /// 
        [Description("出库")]
        Outbound = 100,
        /// 
        /// 盘点出库
        /// 
        [Description("盘点出库")]
        OutInventory = 101,
        /// 
        /// 分拣出库
        /// 
        [Description("分拣出库")]
        OutPick = 102,
        /// 
        /// 质检出库
        /// 
        [Description("质检出库")]
        OutQuality = 103,
        /// 
        /// 空托盘出库
        /// 
        [Description("空托盘出库")]
        OutTray = 104,
        /// 
        /// NG出库
        /// 
        [Description("NG出库")]
        OutNG = 105,
        /// 
        /// 直接出库
        /// 
        [Description("直接出库")]
        InToOut = 106,
    }
    public enum TaskRelocationTypeEnum
    {
        /// 
        /// 库内移库
        /// 
        [Description("库内移库")]
        Relocation = 300,
        /// 
        /// 库外移库
        /// 
        [Description("库外移库")]
        RelocationIn = 301
    }
    public enum TaskOtherTypeEnum
    {
    }
}