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 TaskTypeEnum
{
///
/// 出库 =100
///
[Description("出库")]
Outbound = 100,
///
/// 盘点出库
///
[Description("盘点出库")]
OutInventory = 101,
///
/// 分拣出库
///
[Description("分拣出库")]
OutPick = 102,
///
/// 质检出库
///
[Description("质检出库")]
OutQuality = 103,
///
/// 出空
///
[Description("出空")]
PalletOutbound = 104,
///
/// 补空
///
[Description("补空")]
PalletFillOutbound = 105,
///
/// 入库
///
[Description("入库")]
Inbound = 200,
///
/// 盘点入库
///
[Description("盘点入库")]
InInventory = 201,
///
/// 分拣入库
///
[Description("分拣入库")]
InPick = 202,
///
/// 质检入库
///
[Description("质检入库")]
InQuality = 203,
///
/// 入空
///
[Description("入空")]
PalletInbound = 204,
///
/// 回空
///
[Description("回空")]
PalletReturnInbound = 205,
///
/// 移库
///
[Description("移库")]
Relocation = 300,
///
/// 库内移库
///
[Description("库内移库")]
RelocationIn = 301,
///
/// 库外移库
///
[Description("库外移库")]
RelocationOut = 302,
[Description("AGV搬运")]
AGVCarry = 500,
}
}