using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 监测基础记录 /// public class MonitorBasicRecord : MonitorBasicRecordContent { /// /// /// public MonitorBasicRecord() { } /// /// /// public MonitorBasicRecord(MonitorBasicRecord rhs) : base(rhs) { this.CorpID = rhs.CorpID; this.MonitorPointID = rhs.MonitorPointID; this.SignalID = rhs.SignalID; this.RecordType = rhs.RecordType; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 测点标识 /// public long MonitorPointID { get; set; } /// /// 信号标识 /// public long SignalID { get; set; } /// /// 记录类型 /// public eMonitorType RecordType { get; set; } } }