using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSMachine.WMS.App.Dto.Enum
{
///
/// 工单任务状态
///
public enum TaskStatusEnum
{
///
///待执行
///
[Description("待执行")]
Initial = 0,
///
/// 执行中
///
[Description("执行中")]
InExecution = 1,
///
/// 执行成功
///
[Description("执行成功")]
Completed = 2,
///
/// 执行失败
///
[Description("执行失败")]
Failed = 3,
///
/// 暂停
///
[Description("暂停")]
Paused = 4,
///
/// 取货完成
///
[Description("取货完成")]
PickupCompleted = 5,
///
/// 取消
///
[Description("取消")]
Cancelled = -1
}
}