12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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;
- /// <summary>
- /// plc 给产品编码
- /// </summary>
- public uint PlcToPcCodeIndex { get => _PlcToPcCodeIndex; set => _PlcToPcCodeIndex = value; }
- private uint _PcToPlcCodeIndex = 100;
- /// <summary>
- /// plc 给产品编码
- /// </summary>
- public uint PcToPlcCodeIndex { get => _PcToPlcCodeIndex; set => _PcToPlcCodeIndex = value; }
- private uint _PcToPlcResult = 100;
- /// <summary>
- /// Pc回复 产品拍照结果
- /// </summary>
- public uint PcToPlcResult { get => _PcToPlcResult; set => _PcToPlcResult = value; }
- private uint _PcToPlcCompleted =100;
- /// <summary>
- /// Pc回复 完成
- /// </summary>
- public uint PcToPlcCompleted { get => _PcToPlcCompleted; set => _PcToPlcCompleted = value; }
- }
- }
|