HouseInfo.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. using CommunityToolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.DebugEntitys
  8. {
  9. public class HouseInfo : ObservableObject
  10. {
  11. private int _xuHao;
  12. public int xuHao
  13. {
  14. get => _xuHao;
  15. set => SetProperty(ref _xuHao, value);
  16. }
  17. public long id { get; set; }
  18. public string tlSn { get; set; }
  19. public int houseSn { get; set; }
  20. public string houseName { get; set; }
  21. public string housePort { get; set; }
  22. public int ccdId { get; set; }
  23. public string ccdSn { get; set; }
  24. private int _ccdHeight;
  25. public int ccdHeight
  26. {
  27. get => _ccdHeight;
  28. set => SetProperty(ref _ccdHeight, value);
  29. }
  30. private int _ccdWidth;
  31. public int ccdWidth
  32. {
  33. get => _ccdWidth;
  34. set => SetProperty(ref _ccdWidth, value);
  35. }
  36. private int _targetWidth;
  37. public int targetWidth
  38. {
  39. get => _targetWidth;
  40. set => SetProperty(ref _targetWidth, value);
  41. }
  42. private int _targetHeight;
  43. public int targetHeight
  44. {
  45. get => _targetHeight;
  46. set => SetProperty(ref _targetHeight, value);
  47. }
  48. private int? _verticalMotorSpacePulse;
  49. public int? verticalMotorSpacePulse
  50. {
  51. get => _verticalMotorSpacePulse;
  52. set => SetProperty(ref _verticalMotorSpacePulse, value);
  53. }
  54. private int _ccdExposure;
  55. public int ccdExposure
  56. {
  57. get => _ccdExposure;
  58. set => SetProperty(ref _ccdExposure, value);
  59. }
  60. private int _autoFocusNumber;
  61. public int autoFocusNumber
  62. {
  63. get => _autoFocusNumber;
  64. set => SetProperty(ref _autoFocusNumber, value);
  65. }
  66. private int _photographPictureNumber;
  67. public int photographPictureNumber
  68. {
  69. get => _photographPictureNumber;
  70. set => SetProperty(ref _photographPictureNumber, value);
  71. }
  72. private int _updateFocusNumber;
  73. public int updateFocusNumber
  74. {
  75. get => _updateFocusNumber;
  76. set => SetProperty(ref _updateFocusNumber, value);
  77. }
  78. private int _updateClearestNumber;
  79. public int updateClearestNumber
  80. {
  81. get => _updateClearestNumber;
  82. set => SetProperty(ref _updateClearestNumber, value);
  83. }
  84. private int _openCcd;
  85. public int openCcd
  86. {
  87. get => _openCcd;
  88. set => SetProperty(ref _openCcd, value);
  89. }
  90. private int _openPort;
  91. public int openPort
  92. {
  93. get => _openPort;
  94. set => SetProperty(ref _openPort, value);
  95. }
  96. private int _autoFocus;
  97. public int autoFocus
  98. {
  99. get => _autoFocus;
  100. set => SetProperty(ref _autoFocus, value);
  101. }
  102. private int _noImagePreview;
  103. public int noImagePreview
  104. {
  105. get => _noImagePreview;
  106. set => SetProperty(ref _noImagePreview, value);
  107. }
  108. private int _inletValveOpeningTime;
  109. /// <summary>
  110. /// 进气阀打开时间
  111. /// </summary>
  112. public int inletValveOpeningTime
  113. {
  114. get => _inletValveOpeningTime;
  115. set => SetProperty(ref _inletValveOpeningTime, value);
  116. }
  117. private decimal _temperatureLowerHeatingPlate;
  118. /// <summary>
  119. /// 下加热板目标温度
  120. /// </summary>
  121. public decimal temperatureLowerHeatingPlate
  122. {
  123. get => _temperatureLowerHeatingPlate;
  124. set => SetProperty(ref _temperatureLowerHeatingPlate, value);
  125. }
  126. }
  127. }