DongYing/DataServer/api/EnergyEfficiency/get_energy_trend_response.cs

25 lines
519 B
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_trend_response
{
/// <summary>
/// 返回码
/// </summary>
public int code { get; set; }
/// <summary>
/// 返回说明
/// </summary>
public string msg { get; set; }
}
}