using System.ComponentModel; namespace WCS.Protocol.SX.Station { [Description("523")] /// /// 输送机状态读取协议 /// public interface IStation523 : IProtocol { /// /// 警报 /// [Description("报警")] StationAlarm Alarm { get; set; } /// /// 备用 /// //[Description("备用")] short RES { get; set; } /// /// 状态 /// [Description("状态")] StationStatus Status { get; set; } /// /// 运行时间 /// //[Description("运行时间")] [IgnoreChanging] float RunTime { get; set; } /// /// 运行状态位 /// [Description("运行状态")] StationStatus1 Status1 { get; set; } } }