using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api.EnergyEfficiency { /// /// 获取能源流向接口响应实体 /// public class get_energy_flow_response { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } public energy_flow data { get; set; } } public class energy_flow { public string Name { get; set; } public decimal Value { get; set; } public List data { get; set; } } public class secondary_energy_flow { public string Name { get; set; } public decimal Value { get; set; } public List data { get; set; } } public class three_level_energy_flow { public string Name { get; set; } public decimal Value { get; set; } } }