WCS_Robot520.cs 557 B

12345678910111213141516171819
  1. using System.Runtime.Serialization;
  2. using WCS.Protocol.SX.Protocol.Robot;
  3. namespace WCS.Protocol.SX.Robot
  4. {
  5. [DataContract]
  6. public class WCS_Robot520 : IRobot520
  7. {
  8. public short AddrFrom { get; set; }
  9. public short AddrTo { get;set; }
  10. public short GoodsType { get;set; }
  11. public short TaskQty { get;set; }
  12. public RobotCmd Cmd { get;set; }
  13. public short VoucherNo { get;set; }
  14. public int Task1 { get;set; }
  15. public int Task2 { get;set; }
  16. public int Task3 { get;set; }
  17. }
  18. }