75 lines
1.8 KiB
C#
75 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api.EnergyEfficiency
|
|
{
|
|
/// <summary>
|
|
/// 获取能效对标接口响应实体
|
|
/// </summary>
|
|
public class get_energy_benchmarking_response
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
public energy_benchmarking data { get; set; }
|
|
}
|
|
|
|
public class energy_benchmarking
|
|
{
|
|
/// <summary>
|
|
/// 人均用水量标准
|
|
/// </summary>
|
|
public decimal WateConsumption { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人均综合能耗标准
|
|
/// </summary>
|
|
public decimal EnergyConsumption { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位建筑面积综合能耗标准
|
|
/// </summary>
|
|
public decimal BuildingArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人均用水量
|
|
/// </summary>
|
|
public decimal AvgWaterConsumption { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人均综合能耗
|
|
/// </summary>
|
|
public decimal AvgEnergyConsumption { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位建筑面积综合能耗
|
|
/// </summary>
|
|
public decimal UnitBuildingArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人均用水量同比
|
|
/// </summary>
|
|
public decimal YoyWaterConsumption { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人均综合能耗同比
|
|
/// </summary>
|
|
public decimal YoyEnergyConsumption { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位建筑面积综合能耗同比
|
|
/// </summary>
|
|
public decimal YoyBuildingArea { get; set; }
|
|
}
|
|
}
|