WcsCallBackRequest.cs 587 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WMS.Info
  7. {
  8. public class WcsCallBackRequest
  9. {
  10. public long TaskNo { get; set; }
  11. public int State { get; set; }
  12. }
  13. public class WcsTaskCreateRequest
  14. {
  15. public string TrayNo { get; set; }
  16. public int TaskType { get; set; }
  17. }
  18. public class AllotLocationRequest
  19. {
  20. public string TrayNo { get; set; }
  21. public int Height { get; set; }
  22. public List<int> Layer { get; set; }
  23. }
  24. }