using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common.ConveyorLineEnum { public enum ConveyorStatus { /// /// 使能关闭 /// [Description("使能关闭")] Enableoff, /// /// 无货待命 /// [Description("无货待命")] Empty = 100, /// /// 有货待命 /// [Description("有货待命")] Stored = 200, /// /// 故障 1000 - 2000 /// [Description("故障")] Breakdown = 1000, /// /// 手动 /// [Description("手动")] Manual = 2000, /// /// 急停 /// [Description("急停")] Scram = 3000, } }