using System; using System.Reflection; namespace IStation.ChEr.Entity { /// /// 水量预测 /// public class WaterPredictRecord// : BaseEntity//, Entity.ISorter, Entity.IFlags, Entity.ITagName, Entity.IUseStatus, System.ICloneable { /// /// /// public WaterPredictRecord() { } /// /// /// /// public WaterPredictRecord(WaterPredictRecord rhs) { this.ID = rhs.ID; this.DayHour = rhs.DayHour; this.LastPredictValue = rhs.LastPredictValue; this.RealValue = rhs.RealValue; this.LastPredictTime = rhs.LastPredictTime; this.PredictValueList = rhs.PredictValueList; this.PredictTime = rhs.PredictTime; } /// /// id /// public long ID { get; set; } /// /// 小时: 例如2024-05-14 01:00 表示为 24041401 /// public int DayHour { get; set; } /// /// 真实累计流量 /// public double RealValue { get; set; } /// /// 最新预测流量 /// public double LastPredictValue { get; set; } /// /// 最新预测时间 /// public DateTime LastPredictTime { get; set; } /// /// 预测流量值(多个用逗号隔开) /// public string PredictValueList { get; set; } /// /// 预测流量值时间 /// public DateTime PredictTime { get; set; } /// /// /// /// public WaterPredictRecord Clone() { return (WaterPredictRecord)this.MemberwiseClone(); } } }