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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.AGV
- {
- /// <summary>
- /// 辊筒货位到货位搬运
- /// </summary>
- 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; }
- }
- }
|