using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Tasks.StackerCraneJob { public enum StackerCraneStatus { /// /// 未知 /// [Description("未知")] Unkonw, /// /// 准备就绪 /// [Description("准备就绪")] Ready, } public enum StackerCraneAutoStatus { /// /// 维修/维护/保养 /// [Description("维修")] Maintenance = 2, /// /// 手动 /// [Description("手动")] Manual = 3, /// /// 本机自动 /// [Description("本机自动")] SemiAutomatic = 4, /// /// 联机 /// [Description("联机")] Automatic = 5, /// /// 未知 /// [Description("未知")] Unkonw = 6 } public enum StackerCraneWorkStatus { /// /// 待机 /// [Description("待机")] Standby = 1, /// /// 收到任务 /// [Description("收到任务")] ReceivedTask, /// /// 取货前移动 /// [Description("取货前移动")] PickBeforeMove, /// /// 取货中 /// [Description("取货中")] PickUp, /// /// 取货后移动 /// [Description("取货后移动")] PickAfterMove = 6, /// /// 放货中 /// [Description("放货中")] Putting, /// /// 放货完成 /// [Description("放货完成")] PutCompleted, /// /// 任务执行错误 /// [Description("任务执行错误")] WorkError, /// /// 未知 /// [Description("未知")] Unkonw } public enum StackerCraneTaskCompleted { /// /// 任务完成 /// [Description("任务完成")] WorkCompleted = 1, /// /// 未知 /// [Description("未知")] Unkonw } }