41 lines
1013 B
C#
41 lines
1013 B
C#
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<aircondition_data> data { get; set; }
|
||
}
|
||
|
||
public class aircondition_data
|
||
{
|
||
public string UnitName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 机组设定模式 1=制热模式,2=制冷模式
|
||
/// </summary>
|
||
public string UnitMode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 机组累计运行时间 单位:小时
|
||
/// </summary>
|
||
public string OperatingTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 系统出水温度 单位:℃
|
||
/// </summary>
|
||
public string OutTemperature { get; set; }
|
||
|
||
/// <summary>
|
||
/// 系统回水温度 单位:℃
|
||
/// </summary>
|
||
public string ReturnTemperature { get; set; }
|
||
}
|
||
}
|