using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 监测运行区间Kpi信息
///
public class MonitorRunSpanKpiInfo
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 对象类型
///
public string ObjectType { get; set; }
///
/// 对象标识
///
public long ObjectID { get; set; }
///
/// 对象名称
///
public string ObjectName { get; set; }
///
/// Kpi项集合
///
public List KpiItems { get; set; }
///
/// 区间项集合
///
public List SpanItems { get; set; }
}
}