Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- 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; }
- }
- }
|