using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Common.TaskEnum
{
public enum TaskInStatusEnum
{
///
/// 新建入库任务
///
[Description("新建入库任务")]
InNew = 200,
///
/// 天车入库取货完成
///
[Description("天车入库取货完成")]
Line_Ingrab = 210,
///
/// 天车入库取货执行中
///
[Description("天车入库取货执行中")]
Line_InGrabExecuting = 220,
///
/// 天车入库放货执行中
///
[Description("天车入库放货执行中")]
Line_InDownExecuting = 221,
///
/// 天车入库完成
///
[Description("天车入库完成")]
Line_InFinish = 225,
///
/// 入库任务完成
///
[Description("入库任务完成")]
InFinish = 290,
///
/// 入库任务挂起
///
[Description("入库任务挂起")]
InPending = 297,
///
/// 入库任务取消
///
[Description("入库任务取消")]
InCancel = 298,
///
/// 入库任务异常
///
[Description("入库任务异常")]
InException = 299,
}
public enum TaskMoveStatusEnum
{
///
/// 新建移动任务
///
[Description("新建移动任务")]
OutNewMove = 101,
///
/// 天车移动完成
///
[Description("天车移动完成")]
MoveFinish = 102,
///
/// 天车移动中
///
[Description("天车移动中")]
Line_OutMove =102
}
public enum TaskOutStatusEnum
{
///
/// 新建出库任务
///
[Description("新建出库任务")]
OutNew = 100,
///
/// 天车出库取货完成
///
[Description("天车出库取货完成")]
SC_OutExecuting = 110,
///
/// 天车出库完成
///
[Description("天车出库完成")]
SC_OutFinish = 115,
///
/// 天车出库取货执行中
///
[Description("天车出库取货执行中")]
Line_OutGrabExecuting = 120,
///
/// 天车出库放货执行中
///
[Description("天车出库放货执行中")]
Line_OutWownExecuting = 130,
///
/// 出库任务完成
///
[Description("出库任务完成")]
OutFinish = 190,
///
/// 出库任务挂起
///
[Description("出库任务挂起")]
OutPending = 197,
///
/// 出库任务取消
///
[Description("出库任务取消")]
OutCancel = 198,
///
/// 出库任务异常
///
[Description("出库任务异常")]
OutException = 199,
}
public enum MateTypeEnum
{
///
/// 自产
///
[Description("自产")]
ZiChan,
///
/// 外购
///
[Description("外购")]
WaiGou,
}
public enum StorageModeEnum
{
///
/// 出库优先
///
[Description("出库优先")]
Out=1,
///
/// 入库优先
///
[Description("入库优先")]
In = 2,
}
}