using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 排产生产标记 /// public enum ScheduleOrderType { /// /// 正常订单 /// [Description("正常订单")] 正常订单 = 1, /// /// 插单订单 /// [Description("插单订单")] 插单订单 = 2, /// /// 返修订单 /// [Description("返修订单")] 返修订单 = 3, /// /// 试制订单和生产优化 /// [Description("试制订单和生产优化")] 试制订单和生产优化 = 4, /// /// 跟踪订单 /// [Description("跟踪订单")] 跟踪订单 = 5, /// /// 人工生产 /// [Description("人工生产")] 人工生产 = 6 } }