Files
2025-12-11 09:17:16 +08:00

57 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}