终端一体化运控平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

29 rindas
955 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_SlotRollerJobData:IJobData
  12. {
  13. //private static AGV_SlotRollerJobData _instance;
  14. //public static AGV_SlotRollerJobData GetInstance => _instance ??= new AGV_SlotRollerJobData();
  15. public string? containerCode { get; set; }
  16. public string startSlotCode { get; set; }
  17. public string endSlotCode { 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. }
  26. }