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; }
}
}