Files
Web_CRICS_Server_VS2010_Prod/Domain/Room.cs

57 lines
1.3 KiB
C#
Raw Normal View History

2025-12-11 09:17:16 +08:00
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; }
/// <summary>
/// 主机在线状态1在线0离线
/// </summary>
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; }//客房电源
/// <summary>
/// 锁状态
/// </summary>
public int LockStatus { get; set; }
/// <summary>
/// 锁电压
/// </summary>
public float LockVoltage { get; set; }
/// <summary>
/// 外设离线数量
/// </summary>
public int PeripheralOfflineCount { get; set; }
/// <summary>
/// 外设低电数量
/// </summary>
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; }
}
}