using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 任务类型枚举类
///
public enum TaskType
{
///
/// 热前联合工厂入库
///
[Description("热前联合工厂入库")]
PreComplexplan = 9,
///
/// 热前入库
///
[Description("热前入库")]
PreHeatStorage = 10,
///
/// 热前出库
///
[Description("热前出库")]
Preheating = 11,
///
/// 上料运输
///
[Description("上料运输")]
FreightTransportation = 12,
///
/// ECM上料
///
[Description("ECM上料")]
ECMFeed = 13,
///
/// ECM人工上料
///
[Description("ECM人工上料")]
ECMFeedByHand = 131,
///
/// ECM生产
///
[Description("ECM生产")]
ECMProduct = 14,
///
/// ECM下料
///
[Description("ECM下料")]
ECMBlanking = 15,
///
/// 缓存区运输
///
[Description("缓存区运输")]
BufferTransportation = 16,
///
/// 缓存区放料
///
[Description("缓存区放料")]
BufferFeed = 17,
///
/// 热后入库运输
///
[Description("热后入库运输")]
HeatTransportation = 18,
///
/// 人工抽样
///
[Description("人工抽样")]
ArtificialQualityInspection = 19,
///
/// 热后入库
///
[Description("热后入库")]
PostHeatStorage = 20,
///
/// 热后出库
///
[Description("热后出库")]
PostHeatStorageOut = 21,
///
/// 热后出库缺料
///
[Description("热后出库缺料")]
PostHeatStorageOutNoMaterial = 211,
///
/// 不良品出库
///
[Description("不良品出库")]
OutStorageByRejects = 97,
///
/// 报废出库
///
[Description("报废出库")]
OutStorageByScrap = 98,
///
/// 其他
///
[Description("其他")]
Other = 99
};
}