using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common.TaskEnum { public enum TaskTypeEnum { /// /// 库内移库 /// [Description("库内移库")] Relocation = 300, /// /// 库外移库 /// [Description("库外移库")] RelocationIn = 301, /// /// 入库 /// [Description("入库")] Inbound = 1050, /// /// 盘点入库 /// [Description("盘点入库")] InInventory = 1100, /// /// 分拣入库 /// [Description("分拣入库")] InPick = 1150, /// /// 质检入库 /// [Description("质检入库")] InQuality = 1200, /// /// 测试架入库 /// [Description("测试架入库")] TestInbound = 2000, /// /// 油墨仓入库 /// [Description("油墨仓入库")] PrintingInbound = 2050, /// /// 辅料仓入库 /// [Description("辅料仓入库")] AccessoryInbound = 2100, /// /// 板料仓入库 /// [Description("板料仓入库")] SheetInbound = 2150, /// /// 干膜仓入库 /// [Description("干膜仓入库")] DryfilmInbound = 2200, /// /// PP仓入库 /// [Description("PP仓入库")] PPInbound = 2250, /// /// 成品仓入库 /// [Description("成品仓入库")] ProductInbound = 2300, /// /// 阻焊仓入库 /// [Description("阻焊仓入库")] SolderInbound = 2350, /// /// 出库 /// [Description("出库")] Outbound = 3000, /// /// 盘点出库 /// [Description("盘点出库")] OutInventory = 3050, /// /// 分拣出库 /// [Description("分拣出库")] OutPick = 3100, /// /// 质检出库 /// [Description("质检出库")] OutQuality = 3150, /// /// 测试架出库 /// [Description("测试架出库")] TestOutbound = 4000, /// /// 油墨仓出库 /// [Description("油墨仓出库")] PrintingOutbound = 4050, /// /// 辅料仓出库 /// [Description("辅料仓出库")] AccessoryOutbound = 4100, /// /// 板料仓出库 /// [Description("板料仓出库")] SheetOutbound = 4150, /// /// 干膜仓出库 /// [Description("干膜仓出库")] DryfilmOutbound = 4200, /// /// PP仓出库 /// [Description("PP仓出库")] PPOutbound = 4250, /// /// 成品仓出库 /// [Description("成品仓出库")] ProductOutbound = 4300, /// /// 阻焊仓出库 /// [Description("阻焊仓出库")] SolderOutbound = 4350, } }