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> { protected override bool ParallelDo => throw new NotImplementedException(); protected override bool SaveLogsToFile => throw new NotImplementedException(); public override void Do(Device obj) { throw new NotImplementedException(); } public override bool Select(Device dev) { return new int[] { 1701, 2101,1717, 2117}.Contains(int.Parse(dev.Code)); } } }