using System; using System.Collections.Generic; namespace DAL.New_Models; public partial class TbHostAir { public int HostId { get; set; } public int RoomTypeAirId { get; set; } /// /// 空调运行状态,0/停止,1/运行 /// public bool? Running { get; set; } /// /// 当前温度 /// public short? CurrentTemp { get; set; } /// /// 设定温度 /// public short? SettingTemp { get; set; } /// /// 风速:0/停止, 1/低速, 2/中速, 3/高速, 4/自动 /// public short? Speed { get; set; } /// /// 冷阀门:0关,1开 /// public short? ColdValve { get; set; } /// /// 热阀门:0关,1开 /// public short? ThermalValve { get; set; } /// /// 保温温度 /// public short? KeepTemp { get; set; } /// /// 初始温度 /// public short? InitTemp { get; set; } /// /// 最高温度 /// public short? HightTemp { get; set; } /// /// 最低温度 /// public short? LowerTemp { get; set; } /// /// 死区温度 /// public short? DeadTemp { get; set; } /// /// 热 /// public short? HotDevition { get; set; } /// /// 冷偏差 /// public short? ColdDevition { get; set; } /// /// 欢迎模式时间(分钟) /// public short? WelcomeTime { get; set; } /// /// 是否锁定温度 /// public bool? IsLockTemp { get; set; } /// /// 锁定温度 /// public short? LockTemp { get; set; } /// /// 模式: 1/制冷模式,2/制热模式,4/送风模式,8/除湿模式 /// public int? Mode { get; set; } /// /// 阀状态: 0/冷阀开,1/冷阀关,2/热阀开,3/热阀关 /// public int? Valve { get; set; } /// /// 空调管制:0/二管制,1/四管制 /// public int? ControlType { get; set; } /// /// 补偿温度 /// public double? CompensatoryTemp { get; set; } /// /// 是否关联房态 /// public bool? RelateRoomStatus { get; set; } /// /// 是否关联门磁 /// public bool? RelateDoorContact { get; set; } /// /// 冷热模式:0/手动,1/自动 /// public int? ColdHotMode { get; set; } /// /// 冷热转换延时,单位:秒 /// public int? ColdHotSwitchDelayTime { get; set; } /// /// 温度到达停止风机运行 /// public bool? FanStop { get; set; } /// /// 禁止风机高速运行:0/否,1/是 /// public bool? DisableFanHighSpeed { get; set; } /// /// 启用睡眠标志 /// public bool? SleepFlag { get; set; } /// /// 睡眠开始时间 /// public string? SleepStartTime { get; set; } /// /// 睡眠结束时间 /// public string? SleepEndTime { get; set; } /// /// 睡眠模式偏差 /// public short? SleepDevition { get; set; } /// /// 睡眠热 /// public short? SleepHotDevition { get; set; } /// /// 睡眠冷偏差 /// public short? SleepColdDevition { get; set; } /// /// 启动定时 /// public bool? TimeFlag { get; set; } /// /// 定时开始时间1 /// public string? TimeStartTime1 { get; set; } /// /// 定时结束时间1 /// public string? TimeEndTime1 { get; set; } /// /// 定时开始时间2 /// public string? TimeStartTime2 { get; set; } /// /// 定时结束时间2 /// public string? TimeEndTime2 { get; set; } /// /// 定时开始时间3 /// public string? TimeStartTime3 { get; set; } /// /// 定时结束时间3 /// public string? TimeEndTime3 { get; set; } public int? No { get; set; } public string? ModalId { get; set; } public int? RoomTypeModalId { get; set; } public virtual TbRoomTypeAir RoomTypeAir { get; set; } = null!; }