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 TaskTypeEnum
{
///
/// 领料出库
///
[Description("领料出库")]
Outbound = 100,
///
/// 盘点出库
///
[Description("盘点出库")]
OutInventory = 110,
///
/// 分拣出库
///
[Description("分拣出库")]
OutPick = 120,
///
/// 质检出库
///
[Description("质检出库")]
OutQuality = 130,
///
/// MES出库
///
[Description("MES出库")]
MesOutbound = 200,
///
/// 采购入库
///
[Description("采购入库")]
Inbound = 510,
///
/// 盘点入库
///
[Description("盘点入库")]
InInventory = 520,
///
/// 分拣入库
///
[Description("分拣入库")]
InPick = 530,
///
/// 质检入库
///
[Description("质检入库")]
InQuality = 540,
///
/// 生产退料
///
[Description("生产退料")]
ProductionReturn = 550,
///
/// 线边仓入库
///
[Description("线边仓入库")]
InboundXB = 560,
///
/// 机台入库
///
[Description("机台入库")]
InboundJT = 570,
///
/// 巷道内移库
///
[Description("巷道内移库")]
Relocation = 900
}
}