PlcData.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. using System.Threading.Tasks;
  7. namespace LampInspectionMachine.Model
  8. {
  9. public class PlcData
  10. {
  11. public PlcData()
  12. {
  13. }
  14. private uint _PlcToPcCodeIndex = 100;
  15. /// <summary>
  16. /// plc 给产品编码
  17. /// </summary>
  18. public uint PlcToPcCodeIndex { get => _PlcToPcCodeIndex; set => _PlcToPcCodeIndex = value; }
  19. private uint _PcToPlcCodeIndex = 100;
  20. /// <summary>
  21. /// plc 给产品编码
  22. /// </summary>
  23. public uint PcToPlcCodeIndex { get => _PcToPlcCodeIndex; set => _PcToPlcCodeIndex = value; }
  24. private uint _PcToPlcResult = 100;
  25. /// <summary>
  26. /// Pc回复 产品拍照结果
  27. /// </summary>
  28. public uint PcToPlcResult { get => _PcToPlcResult; set => _PcToPlcResult = value; }
  29. private uint _PcToPlcCompleted =100;
  30. /// <summary>
  31. /// Pc回复 完成
  32. /// </summary>
  33. public uint PcToPlcCompleted { get => _PcToPlcCompleted; set => _PcToPlcCompleted = value; }
  34. }
  35. }