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 TaskTypeGroup { /// /// /// InboundGroup, /// /// /// OutbondGroup, /// /// /// RelocationGroup, /// /// /// OtherGroup } public enum TaskInboundTypeEnum { /// /// 入库 /// [Description("入库")] Inbound = 200, /// /// 盘点入库 /// [Description("盘点入库")] InInventory = 201, /// /// 分拣入库 /// [Description("分拣入库")] InPick = 202, /// /// 质检入库 /// [Description("质检入库")] InQuality = 203 } public enum TaskOutboundTypeEnum { /// /// 出库 /// [Description("出库")] Outbound = 100, /// /// 盘点出库 /// [Description("盘点出库")] OutInventory = 101, /// /// 分拣出库 /// [Description("分拣出库")] OutPick = 102, /// /// 质检出库 /// [Description("质检出库")] OutQuality = 103, } public enum TaskRelocationTypeEnum { /// /// 库内移库 /// [Description("库内移库")] Relocation = 300, } }