using System; namespace IStation.Model { /// /// 性能曲线 /// public partial class PumpCurve : BaseModel, System.ICloneable { /// /// /// public PumpCurve() { } /// /// /// public PumpCurve(PumpCurve rhs) : base(rhs) { this.CurveCode = rhs.CurveCode; this.SourceFrom = rhs.SourceFrom; this.CreateMethod = rhs.CreateMethod; this.CoordParas = rhs.CoordParas; this.CurveInfo = rhs.CurveInfo; this.PointInfo = rhs.PointInfo; this.ReliabilityStatus = rhs.ReliabilityStatus; this.CreateTime = rhs.CreateTime; this.UpdateTime = rhs.UpdateTime; this.Description = rhs.Description; } /// /// /// public void Reset(PumpCurve rhs) { this.ID = rhs.ID; this.CurveCode = rhs.CurveCode; this.SourceFrom = rhs.SourceFrom; this.CreateMethod = rhs.CreateMethod; this.CoordParas = rhs.CoordParas; this.CurveInfo = rhs.CurveInfo; this.PointInfo = rhs.PointInfo; this.ReliabilityStatus = rhs.ReliabilityStatus; this.CreateTime = rhs.CreateTime; this.UpdateTime = rhs.UpdateTime; this.Description = rhs.Description; } /// /// 曲线编码 /// public string CurveCode { get; set; } /// /// 曲线来源 /// public eCurveSourceFrom SourceFrom { get; set; } /// /// 创建方法 /// public eCurveCreateMethod CreateMethod { get; set; } /// /// 坐标参数 /// public CurveCoordinateParas CoordParas { get; set; } /// /// 曲线信息 /// public FeatCurveExpressGroup CurveInfo { get; set; } /// /// 点信息 /// public FeatCurvePointGroup PointInfo { get; set; } /// /// 可信度 /// public eReliabilityStatus ReliabilityStatus { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 备注说明 /// public string Description { get; set; } /// /// /// public PumpCurve Clone() { return new PumpCurve(this); } object ICloneable.Clone() { return Clone(); } } }