using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 振动监测基础记录 /// public class MonitorVibrationBasicRecordDto { /// /// 客户标识 /// public long CorpID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set;} /// /// 数据时间 /// public DateTime DataTime { get; set; } /// /// 信号记录列表 /// public List SignalRecordList { get; set; } } }