using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 能效kpi实时度量项记录
///
public class EtaLargeScreenKpiRealItemRecord
{
///
/// 时间
///
public string Time { get; set; }
///
/// 值
///
public double? Value { get; set; }
///
/// 提示信息
///
public List ToolTips { get; set; }
}
}