tangxu
2023-04-10 7f8ba13a353ed3da5efbbbf623d586428f4bce96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application 
{
    /// <summary>
    /// Eta指标
    /// </summary>
    public class EtaLargeScreenKpi
    {
        /// <summary>
        /// kpi指标项列表
        /// </summary>
        public List<EtaLargeScreenKpiItem> Items { get; set; }
 
        /// <summary>
        /// 比率项列表
        /// </summary>
        public List<EtaLargeScreenKpiRatioItem> RatioItems { get; set; }
 
        /// <summary>
        /// 指标值
        /// </summary>
        public double Value { get; set; }
 
        /// <summary>
        /// 年度量
        /// </summary>
        public List<EtaLargeScreenKpiYearItem> YearItems { get; set; }
 
        /// <summary>
        /// 月度量
        /// </summary>
        public List<EtaLargeScreenKpiMonthItem> MonthItems { get; set; }
 
        /// <summary>
        /// 实时量
        /// </summary>
        public List<EtaLargeScreenKpiRealItem> RealItems { get; set; }
 
    }
}