tangxu
2022-10-31 2f30d9dfe474db862e1b409065a7ba5280bed92b
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application 
{
    /// <summary>
    /// 监测运行区间Kpi信息
    /// </summary>
    public class MonitorRunSpanKpiInfo
    {
        /// <summary>
        /// 客户标识
        /// </summary>
        public long CorpID { get; set; }
 
        /// <summary>
        /// 对象类型
        /// </summary>
        public string ObjectType { get; set; }
 
        /// <summary>
        /// 对象标识
        /// </summary>
        public long ObjectID { get; set; }
 
        /// <summary>
        /// 对象名称
        /// </summary>
        public string ObjectName { get; set; }
 
        /// <summary>
        /// Kpi项集合
        /// </summary>
        public List<MonitorKpiRecordListItem> KpiItems { get; set; }
 
        /// <summary>
        /// 区间项集合
        /// </summary>
        public List<MonitorRunSpanItem> SpanItems { get; set; }
    }
}