Files
Web_CRICS_Server_VS2010_Prod/Common/OnOffLineData.cs
TianMaiCheng a4b847ed80 给宝镜增加新的功能字段, PMS系统数据格式 更新
给宝镜推送 新功能,增加  RCU离 在线的功能
2026-01-12 15:37:04 +08:00

20 lines
480 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Common
{
public class OnOffLineData
{
public string HotelCode { get; set; }
public string MAC { get; set; }
public string HostNumber { get; set; }
public string RoomNumber { get; set; }
public string EndPoint { get; set; }
public string CurrentStatus { get; set; }
public DateTime CurrentTime { get; set; }
}
}