using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api.EnergyEfficiency { /// /// 获取能耗趋势接口响应实体 /// public class get_energy_trend_response { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public List data { get; set; } } public class energy_trend { /// /// 月份 /// public string Month { get; set; } /// /// 计划能耗 /// public decimal Plan { get; set; } /// /// 值 /// public decimal Value { get; set; } } }