using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api.EnergyEfficiency { /// /// 获取节能量(节电率)接口响应实体 /// public class get_amount_energy_response { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public amount_energy data { get; set; } } public class amount_energy { /// /// 节能量 /// public decimal Energy { get; set; } /// /// 节电率 /// public decimal PowerSavingRate { get; set; } } }