using System; namespace IStation.Entity { /// /// 泵变速曲线 /// public class PumpSpeedCurve : BaseEntity, System.ICloneable { public PumpSpeedCurve() { } public PumpSpeedCurve(PumpSpeedCurve rhs) : base(rhs) { this.PumpCurveID = rhs.PumpCurveID; this.HZ = rhs.HZ; this.SourceFrom = rhs.SourceFrom; this.CreateMethod = rhs.CreateMethod; this.CoordParas = rhs.CoordParas; this.CurveInfo = rhs.CurveInfo; this.ReliabilityStatus = rhs.ReliabilityStatus; this.CreateTime = rhs.CreateTime; this.UpdateTime = rhs.UpdateTime; this.Description = rhs.Description; } /// /// /// public long PumpCurveID { get; set; } /// /// 频率 /// public double HZ { get; set; } /// /// 来源 /// public int SourceFrom { get; set; } /// /// 创建方法 /// public int CreateMethod { get; set; } /// /// 曲线坐标参数 /// public string CoordParas { get; set; } /// /// 曲线信息 /// public string CurveInfo { get; set; } /// /// 可信度 /// public int ReliabilityStatus { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 说明 /// public string Description { get; set; } public PumpSpeedCurve Clone() { return (PumpSpeedCurve)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }