using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// /// public class MonitorRecordDto { /// /// /// public MonitorRecordDto() { } /// /// /// public MonitorRecordDto(Model.MonitorRecord rhs) { this.ID = rhs.ID; this.MonitorPointID = rhs.MonitorPointID; this.DataTime = rhs.DataTime; this.DataValue = rhs.DataValue; this.DataStatus = rhs.DataStatus; } /// /// 标识 /// public long ID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set; } /// /// 数据时间 /// public DateTime DataTime { get; set; } /// /// 数据值 /// public string DataValue { get; set; } /// /// 数据状态 /// public string DataStatus { get; set; } } }