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