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("成品空托出库")]
OutEmpty = 130,
///
/// 成品出库
///
[Description("成品出库")]
OutProduct = 230,
///
/// 原料老厂出库
///
[Description("原料老厂出库")]
OldYLOutbound = 300,
///
/// 原料印刷出库
///
[Description("原料印刷出库")]
PrintYLOutbound = 310,
///
/// 原料纸袋制袋供料
///
[Description("原料纸袋制袋供料")]
PaperYLOutZDGL = 330,
///
/// 辅料无纺布出库
///
[Description("辅料无纺布出库")]
OutWFB = 350,
///
/// 辅料纸箱出库
///
[Description("辅料纸箱出库")]
OutCarton = 360,
///
/// 无纺布淋膜出库
///
[Description("无纺布淋膜出库")]
OutWFBLM = 370,
///
/// 纸张淋膜出库
///
[Description("纸张淋膜出库")]
OutPaperLM = 380,
///
/// 冲切区出库
///
[Description("冲切区出库")]
OutChongQie = 390,
///
/// 模切区出库
///
[Description("模切区出库")]
OutMoQie = 400,
///
/// 分切区出库
///
[Description("分切区出库")]
OutFenQie = 410,
///
/// 无纺布制袋供料
///
[Description("无纺袋制袋供料")]
OutWFBGL = 420,
///
/// 采购入库
///
[Description("采购入库")]
Inbound = 510,
///
/// 盘点入库
///
[Description("盘点入库")]
InInventory = 520,
///
/// 分拣入库
///
[Description("分拣入库")]
InPick = 530,
///
/// 成品入库
///
[Description("成品入库")]
InProduct = 610,
///
/// 成品空托回库
///
[Description("成品空托回库")]
EmptyProductBack = 630,
///
/// 原料印刷半成品入库
///
[Description("原料印刷半成品入库")]
PrintYLInbound = 710,
///
/// 原料印刷余料退库
///
[Description("原料印刷余料退库")]
PrintYLBackInbound = 720,
///
/// 原料印刷余料退库
///
[Description("原料纸袋余料退库")]
PaperYLBackInbound = 730,
///
/// 原料老厂退库
///
[Description("原料老厂退库")]
PaperOldYLBackInbound = 740,
///
/// 巷道内移库
///
[Description("巷道内移库")]
Relocation = 900
}
}