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