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