namespace WCS.Protocol.SX.Station
{
///
/// 外检读取信息
///
public interface IStation91 : IProtocol
{
///
/// 外形检测故障
///
StationShapeAlarm ShapeAlarm { get; set; }
///
/// 重量
///
float Weight { get; set; }
///
/// 长度
///
float Length { get; set; }
///
/// 宽度
///
float Width { get; set; }
}
}