using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CommonEntity { public class XuanZhuResponse { /// /// 酒店编码 /// public string code { get; set; } /// /// 房号 /// public string roomNumber { get; set; } /// /// 回路地址 /// public string address { get; set; } /// /// 回路名称 /// public string name { get; set; } /// /// 状态 /// public int status { get; set; } /// /// 异常类型 /// public int faultType { get; set; } /// /// 异常值 /// public int faultData { 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; } } }