WCS_Robot531.cs 485 B

1234567891011121314151617
  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_Robot531 : IRobot531
  7. {
  8. public int PalletID { get; set; }
  9. public short Type { get; set; }
  10. public short MaxQty { get;set; }
  11. public short Qty { get;set; }
  12. public RobotStationRqst Rqst{ get;set; }
  13. public short VoucherNo { get;set; }
  14. public int[] TaskArray { get;set; }
  15. }
  16. }