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