12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WCS.Core;
- using WCS.Entity.Protocol.Station;
- namespace WCS.WorkEngineering.Systems
- {
- public class MainLineScanCode : DeviceSystem<Device<IStation520, IStation521, IStation522>>
- {
- protected override bool ParallelDo => throw new NotImplementedException();
- protected override bool SaveLogsToFile => throw new NotImplementedException();
- public override void Do(Device<IStation520, IStation521, IStation522> obj)
- {
- throw new NotImplementedException();
- }
- public override bool Select(Device dev)
- {
- return new int[] { 1701, 2101,1717, 2117}.Contains(int.Parse(dev.Code));
- }
- }
- }
|