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("空托入库")] InTray = 205, } public enum TaskOutboundTypeEnum { /// /// 出库 /// [Description("出库")] Outbound = 100, //// /// 空托出库 /// [Description("空托出库")] OutTray = 105, //// /// 直接出库 /// [Description("直接出库")] InToOut = 110 } public enum TaskRelocationTypeEnum { /// /// 库内移库 /// [Description("库内移库")] Relocation = 300, /// /// 库外移库 /// [Description("库外移库")] RelocationIn = 301 } public enum TaskOtherTypeEnum { } public enum TaskAGVCarryTypeEnum { /// /// AGV搬运 /// [Description("AGV搬运")] Carry = 400, /// /// AGV移库搬运 /// [Description("AGV移库搬运")] CarryReloction = 410 } public enum TaskAcrossFloorTypeEnum { /// /// 跨楼层搬运 /// [Description("跨楼层搬运")] AcrossFloorCarry = 500 } }