初始化CRICS
This commit is contained in:
56
Domain/Room.cs
Normal file
56
Domain/Room.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user