using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api.EnergyEfficiency { /// /// 获取单耗接口相应实体 /// public class get_unit_consumption_response { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } public unit_consumption data { get; set; } } public class unit_consumption { /// /// 人均用水量 /// public decimal avg_water_consumption { get; set; } /// /// 人均综合能耗 /// public decimal avg_energy_consumption { get; set; } /// /// 单位建筑面积综合能耗 /// public decimal unit_building_area { get; set; } } }