You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.2 KiB

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Runtime.Serialization;
  6. namespace ICSSoft.Entity
  7. {
  8. [DataContract]
  9. public class AGVInput
  10. {
  11. public AGVInput()
  12. {
  13. }
  14. public AGVInput(string taskType, Input inputs)
  15. {
  16. this.taskType = taskType;
  17. this.inputs = inputs;
  18. }
  19. [DataMember]
  20. public string taskType { get; set; }
  21. [DataMember]
  22. public Input inputs { get; set; }
  23. public class Input
  24. {
  25. public Input(string source_storage_id, string target_storage_id, string empty_storage_id, string jb_container_type)
  26. {
  27. this.source_storage_id = source_storage_id;
  28. this.target_storage_id = target_storage_id;
  29. this.empty_storage_id = empty_storage_id;
  30. this.jb_container_type = jb_container_type;
  31. }
  32. public string source_storage_id { get; set; }
  33. public string target_storage_id { get; set; }
  34. public string empty_storage_id { get; set; }
  35. public string jb_container_type { get; set; }
  36. }
  37. }
  38. }