using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 振动监测波形记录 /// public class MonitorVibrationWaveRecordDto { /// /// /// public MonitorVibrationWaveRecordDto() { } /// /// /// public MonitorVibrationWaveRecordDto(Model.MonitorRealRecord rhs) { this.CorpID = rhs.CorpID; this.MonitorPointID = rhs.MonitorPointID; this.SignalID = rhs.SignalID; this.DataTime = rhs.DataTime; this.DataValue = rhs.DataValue; this.DataStatus = rhs.DataStatus; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 测点id /// public long MonitorPointID { get; set; } /// /// 信号id /// public long SignalID { get; set; } /// /// 数据时间 /// public DateTime DataTime { get; set;} /// /// 数据值 /// public string DataValue { get; set; } /// /// 数据状态 /// public List DataStatus { get; set; } } }