using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common { public enum TaskStatusEnum { /// /// 新建 /// [Description("新建")] Gantry_Wait = 0, /// /// 待发送 /// [Description("待发送")] Gantry_New = 1, /// /// 已发送 /// [Description("已发送")] Gantry_Executing = 2, /// /// 已完成 /// [Description("已完成")] Gantry_Completed = 3, /// /// 等待工位释放 /// [Description("等待工位释放")] Gantry_BeRelease = 4, /// /// 等待重新分配 /// [Description("等待重新分配")] Gantry_BeReassign = 5, } }