using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Domain { public class Room { public int HostID { get; set; } public string HostNumber { get; set; } /// /// 主机在线状态:1在线,0离线 /// public bool HostStatus { get; set; } public string RoomNumber { get; set; } public int RoomStatusID { get; set; } public string RoomStatus { get; set; } public bool DoorLock { get; set; } public string Identity { get; set; } //public bool IsConnectingRoom { get; set; } public bool PowerSupply { get; set; }//客房电源 /// /// 锁状态 /// public int LockStatus { get; set; } /// /// 锁电压 /// public float LockVoltage { get; set; } /// /// 外设离线数量 /// public int PeripheralOfflineCount { get; set; } /// /// 外设低电数量 /// public int PeripheralLowPowerCount { get; set; } public int GroupID { get; set; } public int GroupSort { get; set; } public string IP { get; set; } public string MAC { get; set; } } }