using System.ComponentModel; namespace AUTS.Services.Enums { /// /// 此类变量英文不正确 /// public enum OrderStatus { /// /// 已转MO /// [Description("已转MO")] PlaceOrder = 1, /// /// 已分配条码 /// [Description("已分配条码")] NoScheduling = 2, /// /// 已排产 /// [Description("已排产")] MOrder = 3, /// /// 生产中 /// [Description("生产中")] SnRules = 4, /// /// 完成生产 /// [Description("完成生产")] ProductionPlan = 5, /// /// 已结单 /// [Description("已结单")] InProduction = 6, /// /// 未确认 /// [Description("PO已录入")] unconfirmed=99, ///// ///// 已完成 ///// //[Description("已完成")] //Completed = 7, /// /// 取消 /// [Description("取消")] Cancel = -1, /// /// 暂停中 /// [Description("暂停中")] Suspend = -2, } }