using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO.TaskEnum { public enum TaskInboundTypeEnum { /// /// 入库 /// [Description("入库")] Inbound = 200, /// /// 盘点入库 /// [Description("盘点入库")] InInventory = 201, /// /// 分拣入库 /// [Description("分拣入库")] InPick = 202, /// /// 质检入库 /// [Description("质检入库")] InQuality = 203, /// /// 入空 /// [Description("入空")] PalletInbound = 204, } public enum TaskOutboundTypeEnum { /// /// 出库 /// [Description("出库")] Outbound = 100, /// /// 盘点出库 /// [Description("盘点出库")] OutInventory = 101, /// /// 分拣出库 /// [Description("分拣出库")] OutPick = 102, /// /// 质检出库 /// [Description("质检出库")] OutQuality = 103, } public enum TaskRelocationTypeEnum { /// /// 库内移库 /// [Description("库内移库")] Relocation = 300, /// /// 库外移库 /// [Description("库外移库")] RelocationIn = 301 } public enum TaskOtherTypeEnum { } }