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 TaskInboundTypeEnum
{
///
/// 入库
///
[Description("入库")]
Inbound = 200,
///
/// 盘点入库
///
[Description("盘点入库")]
InInventory = 201,
///
/// 分拣入库
///
[Description("分拣入库")]
InPick = 202,
///
/// 质检入库
///
[Description("质检入库")]
InQuality = 203,
///
/// 入空托
///
[Description("入空托")]
PalletInbound = 204,
}
public enum TaskOutboundTypeEnum
{
///
/// 出库
///
[Description("出库")]
Outbound = 100,
///
/// 盘点出库
///
[Description("盘点出库")]
OutInventory = 101,
///
/// 分拣出库
///
[Description("分拣出库")]
OutPick = 102,
///
/// 质检出库
///
[Description("质检出库")]
OutQuality = 103,
///
/// 出空托
///
[Description("出空托")]
PalletOutbound = 104,
}
///
/// 移库
///
public enum TaskRelocationTypeEnum
{
///
/// 库内移库
///
[Description("库内移库")]
Relocation = 300,
///
/// 库外移库
///
[Description("库外移库")]
RelocationIn = 301
}
///
/// 移车
///
public enum TaskOtherTypeEnum
{
///
/// 库内移车
///
[Description("库内移车")]
RelocationCar = 400,
///
/// 移车充电
///
[Description("移车充电")]
RelocationCarCharging = 401,
}
}