初始化CRICS

This commit is contained in:
2025-12-11 09:17:16 +08:00
commit 83247ec0a2
2735 changed files with 787765 additions and 0 deletions

56
Domain/Room.cs Normal file
View File

@@ -0,0 +1,56 @@
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; }
}
}