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,
}
}