using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// Eta指标
///
public class EtaLargeScreenKpi
{
///
/// kpi指标项列表
///
public List Items { get; set; }
///
/// 比率项列表
///
public List RatioItems { get; set; }
///
/// 指标值
///
public double Value { get; set; }
///
/// 年度量
///
public List YearItems { get; set; }
///
/// 月度量
///
public List MonthItems { get; set; }
///
/// 实时量
///
public List RealItems { get; set; }
}
}