using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 生产任务标记 /// public enum TaskFlag { /// /// 正常生产料 /// [Description("正常生产")] 正常生产 = 0, /// /// 试生产料 /// [Description("试生产")] 试生产 = 1, /// /// 跟踪料 /// [Description("跟踪")] 跟踪 = 2, /// /// 返修料 /// [Description("返修")] 返修 = 3, /// /// 工艺优化料 /// [Description("工艺优化")] 工艺优化 = 4 } }