using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CommonEntity
{
public class NewRoomStatusPush
{
///
/// 酒店编码
///
public string code { get; set; }
public string hostnumber { get; set; }
///
/// 房号
///
public string roomNumber { get; set; }
///
/// 回路地址
///
public string address { get; set; }
///
/// 回路名称
///
public string name { get; set; }
///
/// 状态
///
public int status { get; set; }
///
/// 亮度
///
public int brightness { get; set; }
///
/// 当前温度
///
public int currentTemp { get; set; }
///
/// 设定温度
///
public int settingTemp { get; set; }
///
/// 风速
///
public int fanSpeed { get; set; }
///
/// 模式
///
public int mode { get; set; }
///
/// 阀门
///
public int valve { get; set; }
public long createtime { get; set; }
}
public class DingShiReportDate
{
///
/// HostID
///
public int HostID { get; set; }
///
/// 设备类型
///
public string DeviceType { get; set; }
///
/// 设备地址
///
public string Address { get; set; }
///
/// 状态:1开,2关
///
public int Status { get; set; }
///
/// 亮度
///
public int Brightness { get; set; }
///
/// 当前温度
///
public int CurrentTemp { get; set; }
///
/// 设定温度
///
public int SettingTemp { get; set; }
///
/// 风速
///
public int FanSpeed { get; set; }
///
/// 模式
///
public int Mode { get; set; }
///
/// 阀门
///
public int Valve { get; set; }
}
}