IStation91.cs 665 B

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