using System.Threading.Tasks; using WCS.Core; using WCS.WorkEngineering.Extensions; namespace WCS.WorkEngineering.Systems { /// /// 出库站点交互 /// public class OutboundSiteInteractionSystems : DeviceSystem { protected override bool ParallelDo => true; protected override bool SaveLogsToFile => true; public override void Do(Station obj) { var IsThereATask = false; #region 判断站点是否有任务 #endregion if (IsThereATask) { //TODO判断当前站台是否是一楼 if (true) //一楼无任务站台开始呼叫空轮出库任务 { } } else { } } public override bool Select(Device dev) { throw new NotImplementedException(); } } }