IStation91.cs 589 B

1234567891011121314151617181920212223242526272829
  1. namespace WCS.Protocol.SX.Station
  2. {
  3. /// <summary>
  4. /// 外检读取信息
  5. /// </summary>
  6. public interface IStation91 : IProtocol
  7. {
  8. /// <summary>
  9. /// 外形检测故障
  10. /// </summary>
  11. StationShapeAlarm ShapeAlarm { get; set; }
  12. /// <summary>
  13. /// 重量
  14. /// </summary>
  15. float Weight { get; set; }
  16. /// <summary>
  17. /// 长度
  18. /// </summary>
  19. float Length { get; set; }
  20. /// <summary>
  21. /// 宽度
  22. /// </summary>
  23. float Width { get; set; }
  24. }
  25. }