using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.TaskEnum
{
///
/// 出库任务状态
///
public enum TaskOutStatusEnum
{
///
/// 新建出库任务
///
[Description("新建出库任务")]
OutNew = 100,
///
/// 堆垛机出库执行中
///
[Description("堆垛机出库执行中")]
SC_OutExecuting = 110,
///
/// 堆垛机出库完成
///
[Description("堆垛机出库完成")]
SC_OutFinish = 115,
///
/// 输送线出库执行中
///
[Description("输送线出库执行中")]
Line_OutExecuting = 120,
///
/// 输送线出库完成
///
[Description("输送线输送完成")]
Line_OutFinish = 125,
///
/// 出库任务完成
///
[Description("出库任务完成")]
OutFinish = 190,
///
/// 出库任务挂起
///
[Description("出库任务挂起")]
OutPending = 197,
///
/// 出库任务取消
///
[Description("出库任务取消")]
OutCancel = 198,
///
/// 出库任务异常
///
[Description("出库任务异常")]
OutException = 199,
}
public enum TaskInStatusEnum
{
///
/// 输送线入库执行中
///
[Description("输送线入库执行中")]
Line_InExecuting = 215,
///
/// 输送线入库完成
///
[Description("输送线输送完成")]
Line_InFinish = 220,
///
/// 堆垛机入库执行中
///
[Description("堆垛机入库执行中")]
SC_InExecuting = 230,
///
/// 堆垛机入库完成
///
[Description("堆垛机入库完成")]
SC_InFinish = 235,
///
/// 入库任务完成
///
[Description("入库任务完成")]
InFinish = 290,
///
/// 入库任务挂起
///
[Description("入库任务挂起")]
InPending = 297,
///
/// 入库任务取消
///
[Description("入库任务取消")]
InCancel = 298,
///
/// 入库任务异常
///
[Description("入库任务异常")]
InException = 299,
}
public enum TaskRelocationStatusEnum
{
///
/// 新建移库任务
///
[Description("新建移库任务")]
RelocationNew = 400,
///
/// 堆垛机移库执行中
///
[Description("堆垛机移库执行中")]
SC_RelocationExecuting = 410,
///
/// 堆垛机移库完成
///
[Description("堆垛机移库完成")]
SC_RelocationFinish = 420,
///
/// 移库完成
///
[Description("移库完成")]
RelocationFinish = 430,
}
}