using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Core { //public enum EnumEquipmentCurrentState //{ // /// // /// 运行中 // /// // [Description("运行中")] // Run = 1, // /// // /// 故障 // /// // [Description("故障")] // Fault = 2, // /// // /// 空闲 // /// // [Description("空闲")] // Free = 3, // /// // /// 掉线 // /// // [Description("掉线")] // Disconnect = 4, //} public enum EnumEquipmentCurrentState { /// /// 只用来做显示 /// [Description("全部")] 全部 =0, [Description("生产")] 生产 = 1, [Description("完成")] 完成 = 2, [Description("待机")] 待机 = 3, [Description("警告")] 警告 = 4, [Description("故障")] 故障 = 5, [Description("离线")] 离线 = 6 } }