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 TaskTypeEnum { /// /// 领料出库 /// [Description("领料出库")] Outbound = 100, /// /// 盘点出库 /// [Description("盘点出库")] OutInventory = 110, /// /// 分拣出库 /// [Description("分拣出库")] OutPick = 120, /// /// 成品出库 /// [Description("成品出库")] OutProduct = 230, /// /// 原料老厂出库 /// [Description("原料老厂出库")] OldYLOutbound = 300, /// /// 原料印刷出库 /// [Description("原料印刷出库")] PrintYLOutbound = 310, /// /// 原料纸袋制袋供料 /// [Description("原料纸袋制袋供料")] PaperYLOutZDGL = 330, /// /// 辅料无纺布出库 /// [Description("辅料无纺布出库")] OutWFB = 350, /// /// 无纺布制袋供料 /// [Description("无纺袋制袋供料")] OutWFBGL = 410, /// /// 采购入库 /// [Description("采购入库")] Inbound = 510, /// /// 盘点入库 /// [Description("盘点入库")] InInventory = 520, /// /// 分拣入库 /// [Description("分拣入库")] InPick = 530, /// /// 成品入库 /// [Description("成品入库")] InProduct = 610, /// /// 成品空托回库 /// [Description("成品空托回库")] EmptyProductBack = 630, /// /// 原料印刷半成品入库 /// [Description("原料印刷半成品入库")] PrintYLInbound = 710, /// /// 原料印刷余料退库 /// [Description("原料印刷余料退库")] PrintYLBackInbound = 720, /// /// 原料印刷余料退库 /// [Description("原料纸袋余料退库")] PaperYLBackInbound = 730, /// /// 巷道内移库 /// [Description("巷道内移库")] Relocation = 900 } }