| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.HouseSetting
- {
- public class SettingHouseData
- {
- public List<HouseInfo> records { get; set; } = new List<HouseInfo>();
- }
- public class HouseInfo : ObservableObject
- {
- private int _xuHao;
- public int xuHao
- {
- get => _xuHao;
- set => SetProperty(ref _xuHao, value);
- }
- public long id { get; set; }
- public string tlSn { get; set; }
- public int houseSn { get; set; }
- public string houseName { get; set; }
- public string housePort { get; set; }
- public int ccdId { get; set; }
- public string ccdSn { get; set; }
- private int _ccdHeight;
- public int ccdHeight
- {
- get => _ccdHeight;
- set => SetProperty(ref _ccdHeight, value);
- }
- private int _ccdWidth;
- public int ccdWidth
- {
- get => _ccdWidth;
- set => SetProperty(ref _ccdWidth, value);
- }
- private int _targetWidth;
- public int targetWidth
- {
- get => _targetWidth;
- set => SetProperty(ref _targetWidth, value);
- }
- private int _targetHeight;
- public int targetHeight
- {
- get => _targetHeight;
- set => SetProperty(ref _targetHeight, value);
- }
- private int? _verticalMotorSpacePulse;
- public int? verticalMotorSpacePulse
- {
- get => _verticalMotorSpacePulse;
- set => SetProperty(ref _verticalMotorSpacePulse, value);
- }
- private int _ccdExposure;
- public int ccdExposure
- {
- get => _ccdExposure;
- set => SetProperty(ref _ccdExposure, value);
- }
- private int _autoFocusNumber;
- public int autoFocusNumber
- {
- get => _autoFocusNumber;
- set => SetProperty(ref _autoFocusNumber, value);
- }
- private int _photographPictureNumber;
- public int photographPictureNumber
- {
- get => _photographPictureNumber;
- set => SetProperty(ref _photographPictureNumber, value);
- }
- private int _updateFocusNumber;
- public int updateFocusNumber
- {
- get => _updateFocusNumber;
- set => SetProperty(ref _updateFocusNumber, value);
- }
- private int _updateClearestNumber;
- public int updateClearestNumber
- {
- get => _updateClearestNumber;
- set => SetProperty(ref _updateClearestNumber, value);
- }
- private int _openCcd;
- public int openCcd
- {
- get => _openCcd;
- set => SetProperty(ref _openCcd, value);
- }
- private int _openPort;
- public int openPort
- {
- get => _openPort;
- set => SetProperty(ref _openPort, value);
- }
- private int _autoFocus;
- public int autoFocus
- {
- get => _autoFocus;
- set => SetProperty(ref _autoFocus, value);
- }
- private int _noImagePreview;
- public int noImagePreview
- {
- get => _noImagePreview;
- set => SetProperty(ref _noImagePreview, value);
- }
- private int _inletValveOpeningTime;
- /// <summary>
- /// 进气阀打开时间
- /// </summary>
- public int inletValveOpeningTime
- {
- get => _inletValveOpeningTime;
- set => SetProperty(ref _inletValveOpeningTime, value);
- }
- private decimal _temperatureLowerHeatingPlate;
- /// <summary>
- /// 下加热板目标温度
- /// </summary>
- public decimal temperatureLowerHeatingPlate
- {
- get => _temperatureLowerHeatingPlate;
- set => SetProperty(ref _temperatureLowerHeatingPlate, value);
- }
- }
- }
|