IRobot520.cs 885 B

12345678910111213141516171819202122232425262728293031
  1. using System.ComponentModel;
  2. using WCS.Protocol.SX.Protocol.Robot;
  3. namespace WCS.Protocol.SX.Robot
  4. {
  5. /// <summary>
  6. /// 机械臂520
  7. /// </summary>
  8. [Description("520")]
  9. public interface IRobot520 : IProtocol
  10. {
  11. [Description("起始地址")]
  12. short AddrFrom { get; set; }
  13. [Description("目标地址")]
  14. short AddrTo { get; set; }
  15. [Description("货物类型")]
  16. short GoodsType { get; set; }
  17. [Description("任务数量")]
  18. short TaskQty { get; set; }
  19. [Description("指令类型")]
  20. RobotCmd Cmd { get; set; }
  21. [Description("凭证号")]
  22. short VoucherNo { get; set; }
  23. [Description("任务1")]
  24. int Task1 { get; set; }
  25. [Description("任务2")]
  26. int Task2 { get; set; }
  27. [Description("任务3")]
  28. int Task3 { get; set; }
  29. }
  30. }