using System; using System.Collections.Generic; namespace DAL.PGModels; public partial class 原始日志表设计备份1085Rooms1 { /// /// ID /// public long Id { get; set; } /// /// 房号 /// public string? Room { get; set; } /// /// 主机在线状态 /// public short? RcuStatus { get; set; } /// /// 判断时间 /// public long? JudgTime { get; set; } /// /// 状态类型 /// public string? StateType { get; set; } /// /// 判断开始时间 /// public long? StartTime { get; set; } /// /// 判断停止时间 /// public long? StopTime { get; set; } public int? StartId { get; set; } public int? StopId { get; set; } /// /// 判断数量 /// public int? JudgCoun { get; set; } /// /// 回路地址 /// public string? LoopAddr { get; set; } public string? JudgTimeStr { get; set; } }