using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 常规时管理dto /// public class MonitorHourRecordMgrDto { /// /// /// public MonitorHourRecordMgrDto() { } /// /// /// public MonitorHourRecordMgrDto(Model.MonitorHourRecord rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.MonitorPointID = rhs.MonitorPointID; this.SignalID = rhs.SignalID; this.RecordType = rhs.RecordType; this.DataDay = rhs.DataDay; this.DataHour = rhs.DataHour; this.SrcTime = rhs.SrcTime; this.SrcValue = rhs.SrcValue; this.DataTime = rhs.DataTime; this.DataValue = rhs.DataValue; this.DataStatus = rhs.DataStatus; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set; } /// /// 信号标识 /// public long SignalID { get; set; } /// /// 记录类型 /// public Model.eMonitorType RecordType { get; set; } /// /// 数据日期 /// public DateTime DataDay { get; set; } /// /// 数据小时(1-24) /// public int DataHour { get; set; } /// /// 原始时间 /// 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; } } }