终端一体化运控平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

28 строки
874 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.AGV
  7. {
  8. /// <summary>
  9. /// 辊筒点到点搬运
  10. /// </summary>
  11. internal class AGV_PointRollerJobData:IJobData
  12. {
  13. public string? containerCode { get; set; }
  14. public string startPoint { get; set; }
  15. public string endPoint { get; set; }
  16. public bool autoLoad { get; set; }
  17. public bool enableIOLoad { get; set; }
  18. public bool autoUnload { get; set; }
  19. public bool enableIOUnload { get; set; }
  20. public long? loadEquipmentId { get; set; } = null;
  21. public long? unloadEquipmentId { get; set; } = null;
  22. public bool? loadInteractive { get; set; }
  23. public int? loadHeight { get; set; }
  24. public int? unloadHeight { get; set; }
  25. }
  26. }