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 TaskInStatusEnum { /// /// 新建入库任务 /// [Description("新建入库任务")] InNew = 200, /// /// AGV入库执行中 /// [Description("AGV入库执行中")] AGV_InExecuting = 210, /// /// AGV入库完成 /// [Description("AGV搬运完成")] AGV_InFinish = 215, /// /// 输送线入库执行中 /// [Description("输送线入库执行中")] Line_InExecuting = 220, /// /// 输送线入库完成 /// [Description("输送线入库完成")] Line_InFinish = 225, /// /// 堆垛机入库执行中 /// [Description("堆垛机入库执行中")] SC_InExecuting = 230, /// /// 堆垛机入库完成 /// [Description("堆垛机入库完成")] SC_InFinish = 235, /// /// 入库任务完成 /// [Description("入库任务完成")] InFinish = 290, /// /// 入库任务挂起 /// [Description("入库任务挂起")] InPending = 297, /// /// 入库任务取消 /// [Description("入库任务取消")] InCancel = 298, /// /// 入库任务异常 /// [Description("入库任务异常")] InException = 299, } public enum TaskOutStatusEnum { /// /// 新建出库任务 /// [Description("新建出库任务")] OutNew = 100, /// /// 堆垛机出库执行中 /// [Description("堆垛机出库执行中")] SC_OutExecuting = 110, /// /// 堆垛机出库完成 /// [Description("堆垛机出库完成")] SC_OutFinish = 115, /// /// 输送线出库执行中 /// [Description("输送线出库执行中")] Line_OutExecuting = 120, /// /// 输送线出库完成 /// [Description("输送线出库完成")] Line_OutFinish = 125, /// /// AGV出库执行中 /// [Description("AGV出库执行中")] AGV_OutExecuting = 130, /// /// AGV出库完成 /// [Description("AGV搬运完成")] AGV_OutFinish = 135, /// /// 出库任务完成 /// [Description("出库任务完成")] OutFinish = 190, /// /// 出库任务挂起 /// [Description("出库任务挂起")] OutPending = 197, /// /// 出库任务取消 /// [Description("出库任务取消")] OutCancel = 198, /// /// 出库任务异常 /// [Description("出库任务异常")] OutException = 199, } public enum TaskRelocationStatusEnum { /// /// 新建移库任务 /// [Description("新建移库任务")] RelocationNew = 300, /// /// 堆垛机移库执行中 /// [Description("堆垛机移库执行中")] SC_RelocationExecuting = 310, /// /// 堆垛机移库完成 /// [Description("堆垛机移库完成")] SC_RelocationFinish = 315, /// /// 移库任务完成 /// [Description("移库任务完成")] RelocationFinish = 390, /// /// 移库任务挂起 /// [Description("移库任务挂起")] RelocationPending = 397, /// /// 移库任务取消 /// [Description("移库任务取消")] RelocationCancel = 398, /// /// 移库任务异常 /// [Description("移库任务异常")] RelocationException = 399, } public enum TaskAGVCarryStatusEnum { /// /// 新建AGV搬运任务 /// [Description("新建AGV搬运任务")] CarryNew = 400, /// /// AGV搬运执行中 /// [Description("AGV搬运执行中")] AGV_CarryExecuting = 410, /// /// AGV搬运完成 /// [Description("AGV搬运完成")] AGV_CarryFinish = 415, /// /// AGV搬运任务完成 /// [Description("AGV搬运任务完成")] CarryFinish = 490, /// /// AGV搬运任务挂起 /// [Description("AGV搬运任务挂起")] CarryPending = 497, /// /// AGV搬运任务取消 /// [Description("AGV搬运任务取消")] CarryCancel = 498, /// /// AGV搬运任务异常 /// [Description("AGV搬运任务异常")] CarryException = 499, } public enum TaskAcrossFloorStatusEnum { /// /// 新建跨楼层任务 /// [Description("新建跨楼层任务")] CarryNew = 500, /// /// 跨楼层搬运1 /// [Description("跨楼层搬运1")] FirstCarry = 510, /// /// 一楼搬运完成 /// [Description("跨楼层搬运1完成")] FirstCarryFinish = 515, /// /// 跨楼层搬运2 /// [Description("跨楼层搬运2")] SecondCarry = 520, /// /// 跨楼层搬运2完成 /// [Description("跨楼层搬运2完成")] SecondCarryFinish = 525, /// /// 跨楼层任务完成 /// [Description("跨楼层任务完成")] CarryFinish = 590, /// /// 跨楼层任务挂起 /// [Description("跨楼层任务挂起")] CarryPending = 597, /// /// 跨楼层任务取消 /// [Description("跨楼层任务取消")] CarryCancel = 598, /// /// AGV搬运任务异常 /// [Description("AGV搬运任务异常")] CarryException = 599, } }