IRobot530.cs 816 B

1234567891011121314151617181920212223242526272829303132
  1. using System.ComponentModel;
  2. using WCS.Protocol.SX.Protocol.Robot;
  3. namespace WCS.Protocol.SX.Robot
  4. {
  5. /// <summary>
  6. /// 机械臂码垛工位DB530
  7. /// </summary>
  8. [Description("530")]
  9. public interface IRobot530 : IProtocol
  10. {
  11. [Description("垛任务号")]
  12. int PalletID { get; set; }
  13. [Description("垛型")]
  14. short Type { get; set; }
  15. /// <summary>
  16. /// 最大码垛数量
  17. /// </summary>
  18. [Description("最大数量")]
  19. public short MaxQty { get; set; }
  20. [Description("指令类型")]
  21. public RobotStationCmd Cmd{ get; set; }
  22. /// <summary>
  23. /// 凭证号,触发信号
  24. /// </summary>
  25. [Description("凭证号")]
  26. public short VoucherNo { get; set; }
  27. }
  28. }