using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ivf_tl_Entity.DebugEntitys
{
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;
///
/// 进气阀打开时间
///
public int inletValveOpeningTime
{
get => _inletValveOpeningTime;
set => SetProperty(ref _inletValveOpeningTime, value);
}
private decimal _temperatureLowerHeatingPlate;
///
/// 下加热板目标温度
///
public decimal temperatureLowerHeatingPlate
{
get => _temperatureLowerHeatingPlate;
set => SetProperty(ref _temperatureLowerHeatingPlate, value);
}
}
}