using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.AGV { /// /// 辊筒货位到货位搬运 /// internal class AGV_SlotRollerJobData:IJobData { //private static AGV_SlotRollerJobData _instance; //public static AGV_SlotRollerJobData GetInstance => _instance ??= new AGV_SlotRollerJobData(); public string? containerCode { get; set; } public string startSlotCode { get; set; } public string endSlotCode { get; set; } public bool autoLoad { get; set; } public bool enableIOLoad { get; set; } public bool autoUnload { get; set; } public bool enableIOUnload { get; set; } public long? loadEquipmentId { get; set; } = null; public long? unLoadEquipmentId { get; set; } = null; public bool? loadInteractive { get; set; } } }