IRobot530.cs 936 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System.ComponentModel;
  2. using WCS.Entity.Protocol.Protocol.Robot;
  3. namespace WCS.Entity.Protocol.Robot
  4. {
  5. /// <summary>
  6. /// 机械臂码垛工位DB530
  7. /// </summary>
  8. [Description("机械臂码垛工位DB531")]
  9. public interface IRobot530 : IProtocol
  10. {
  11. /// <summary>
  12. /// 垛形
  13. /// </summary>
  14. [Description("垛形")]
  15. public short Type { get; set; }
  16. /// <summary>
  17. /// 最大码垛数量
  18. /// </summary>
  19. [Description("最大码垛数量")]
  20. public short MaxQuantity { get; set; }
  21. /// <summary>
  22. /// 码垛结束
  23. /// </summary>
  24. [Description("码垛结束")]
  25. public RobotCmdType CmdType { get; set; }
  26. /// <summary>
  27. /// 凭证号,触发信号
  28. /// </summary>
  29. [Description("凭证号,触发信号")]
  30. public short VoucherNo { get; set; }
  31. }
  32. }