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