1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System.Threading.Tasks;
- using WCS.Core;
- using WCS.WorkEngineering.Extensions;
- namespace WCS.WorkEngineering.Systems
- {
- /// <summary>
- /// 出库站点交互
- /// </summary>
- public class OutboundSiteInteractionSystems : DeviceSystem<Station>
- {
- 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();
- }
- }
- }
|