Files
Web_CRICS_Server_VS2010_Prod/CommonEntity/NewRoomStatusPush.cs
2025-12-11 09:17:16 +08:00

106 lines
2.5 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 CommonEntity
{
public class NewRoomStatusPush
{
/// <summary>
/// 酒店编码
/// </summary>
public string code { get; set; }
public string hostnumber { get; set; }
/// <summary>
/// 房号
/// </summary>
public string roomNumber { get; set; }
/// <summary>
/// 回路地址
/// </summary>
public string address { get; set; }
/// <summary>
/// 回路名称
/// </summary>
public string name { get; set; }
/// <summary>
/// 状态
/// </summary>
public int status { get; set; }
/// <summary>
/// 亮度
/// </summary>
public int brightness { get; set; }
/// <summary>
/// 当前温度
/// </summary>
public int currentTemp { get; set; }
/// <summary>
/// 设定温度
/// </summary>
public int settingTemp { get; set; }
/// <summary>
/// 风速
/// </summary>
public int fanSpeed { get; set; }
/// <summary>
/// 模式
/// </summary>
public int mode { get; set; }
/// <summary>
/// 阀门
/// </summary>
public int valve { get; set; }
public long createtime { get; set; }
}
public class DingShiReportDate
{
/// <summary>
/// HostID
/// </summary>
public int HostID { get; set; }
/// <summary>
/// 设备类型
/// </summary>
public string DeviceType { get; set; }
/// <summary>
/// 设备地址
/// </summary>
public string Address { get; set; }
/// <summary>
/// 状态1开2关
/// </summary>
public int Status { get; set; }
/// <summary>
/// 亮度
/// </summary>
public int Brightness { get; set; }
/// <summary>
/// 当前温度
/// </summary>
public int CurrentTemp { get; set; }
/// <summary>
/// 设定温度
/// </summary>
public int SettingTemp { get; set; }
/// <summary>
/// 风速
/// </summary>
public int FanSpeed { get; set; }
/// <summary>
/// 模式
/// </summary>
public int Mode { get; set; }
/// <summary>
/// 阀门
/// </summary>
public int Valve { get; set; }
}
}