using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbModel
{
public int Id { get; set; }
public int? HotelId { get; set; }
///
/// 配置方案名称
///
public string Name { get; set; } = null!;
///
/// 温度修正值
///
public int CorrectedTemp { get; set; }
///
/// 到达温度后风机是否保持低速运行
///
public bool FanRunStatus { get; set; }
///
/// 屋内无人时排气扇状态:0关1开2定时
///
public int ExhaustFanStatus { get; set; }
///
/// 定时时长(分钟/每小时)
///
public int ExhausFanTime { get; set; }
///
/// 红外延时断电时间(分)
///
public int InfraredDelayPo { get; set; }
///
/// 门磁延时断电时间(秒)
///
public int DoorDelayPo { get; set; }
///
/// 拔卡延时断电时间(秒)
///
public int PullCardDelayPo { get; set; }
///
/// 备注
///
public string Remark { get; set; } = null!;
///
/// 编辑时间
///
public DateTime ModifiedDate { get; set; }
///
/// 应用时间
///
public DateTime? ApplyDate { get; set; }
///
/// 操作人
///
public string? ApplyUser { get; set; }
///
/// 所应用的主机ID,以逗号隔开
///
public string? Hosts { get; set; }
public virtual ICollection TbModelDetails { get; set; } = new List();
}