终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

30 行
1.0 KiB

  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. private static AGV_PointRollerJobData _instance;
  14. public static AGV_PointRollerJobData GetInstance => _instance ??= new AGV_PointRollerJobData();
  15. public string? containerCode { get; set; }
  16. public string startPoint { get; set; }
  17. public string endPoint { get; set; }
  18. public bool autoLoad { get; set; }
  19. public bool enableIOLoad { get; set; }
  20. public bool autoUnload { get; set; }
  21. public bool enableIOUnload { get; set; }
  22. public long? loadEquipmentId { get; set; } = null;
  23. public long? unloadEquipmentId { get; set; } = null;
  24. public bool? loadInteractive { get; set; }
  25. public int? loadHeight { get; set; }
  26. public int? unloadHeight { get; set; }
  27. }
  28. }