using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 监测Kpi记录内容
///
public class MonitorKpiRecordContent
{
///
///
///
public MonitorKpiRecordContent() { }
///
///
///
public MonitorKpiRecordContent(Model.MonitorRealRecordContent rhs)
{
this.SrcTime = rhs.SrcTime;
this.SrcValue = rhs.SrcValue;
this.DataTime = rhs.DataTime;
this.DataValue = rhs.DataValue;
this.DataStatus = rhs.DataStatus;
}
///
/// 原始时间
///
public DateTime? SrcTime { get; set; }
///
/// 原始值
///
public string SrcValue { get; set; }
///
/// 数据时间
///
public DateTime DataTime { get; set; }
///
/// 数据值
///
public string DataValue { get; set; }
///
/// 数据状态
///
public List DataStatus { get; set; }
}
}