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