52 lines
1.1 KiB
C#
52 lines
1.1 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_flow_response
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
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<secondary_energy_flow> data { get; set; }
|
|
}
|
|
|
|
public class secondary_energy_flow
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public decimal Value { get; set; }
|
|
|
|
public List<three_level_energy_flow> data { get; set; }
|
|
}
|
|
|
|
public class three_level_energy_flow
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public decimal Value { get; set; }
|
|
}
|
|
}
|