using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataService.api { public class get_aircondition { public int code { get; set; } public string msg { get; set; } public List data { get; set; } } public class aircondition_data { public string UnitName { get; set; } /// /// 机组设定模式 1=制热模式,2=制冷模式 /// public string UnitMode { get; set; } /// /// 机组累计运行时间 单位:小时 /// public string OperatingTime { get; set; } /// /// 系统出水温度 单位:℃ /// public string OutTemperature { get; set; } /// /// 系统回水温度 单位:℃ /// public string ReturnTemperature { get; set; } } }