LonglslandExhibitionCenter/DataService/api/get_aircondition.cs

41 lines
1013 B
C#
Raw 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;
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; }
}
}