using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataServer.api.EnergyEfficiency
{
///
/// 获取各回路(设备)能耗概况接口响应实体
///
public class get_energy_consumption_response
{
///
/// 返回码
///
public int code { get; set; }
///
/// 返回说明
///
public string msg { get; set; }
public List data { get; set; }
}
public class energy_consumption
{
///
/// 设备名称
///
public string DeviceName { get; set; }
///
/// 运行功率
///
public decimal OperatingPower { get; set; }
}
}