using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace LampInspectionMachine.Model { public class PlcData { public PlcData() { } private uint _PlcToPcCodeIndex = 100; /// /// plc 给产品编码 /// public uint PlcToPcCodeIndex { get => _PlcToPcCodeIndex; set => _PlcToPcCodeIndex = value; } private uint _PcToPlcCodeIndex = 100; /// /// plc 给产品编码 /// public uint PcToPlcCodeIndex { get => _PcToPlcCodeIndex; set => _PcToPlcCodeIndex = value; } private uint _PcToPlcResult = 100; /// /// Pc回复 产品拍照结果 /// public uint PcToPlcResult { get => _PcToPlcResult; set => _PcToPlcResult = value; } private uint _PcToPlcCompleted =100; /// /// Pc回复 完成 /// public uint PcToPlcCompleted { get => _PcToPlcCompleted; set => _PcToPlcCompleted = value; } } }