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