using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; namespace IStation.Model { /// /// 周监测记录纯净类 /// public class MonitorWeekRecordPure : MonitorBasicRecord { /// /// /// public MonitorWeekRecordPure() { } /// /// /// public MonitorWeekRecordPure(MonitorBasicRecord rhs, DateTime startDay, DateTime endDay) : base(rhs) { this.StartDay = startDay; this.EndDay = endDay; } /// /// /// public MonitorWeekRecordPure(MonitorWeekRecordPure rhs) : base(rhs) { this.StartDay = rhs.StartDay; this.EndDay = rhs.EndDay; } /// /// 开始日期 /// public DateTime StartDay { get; set; } /// /// 结束日期 /// public DateTime EndDay { get; set; } } }