using System; namespace IStation.Entity { /// /// 泵曲线 /// public class PumpCurve : BaseEntity, 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 string CurveCode { get; set; } /// /// 来源 /// public int SourceFrom { get; set; } /// /// 创建方法 /// public int CreateMethod { get; set; } /// /// 曲线坐标参数 /// public string CoordParas { get; set; } /// /// 曲线信息 /// public string CurveInfo { get; set; } /// /// 点信息 /// public string PointInfo { get; set; } /// /// 可信度 /// public int ReliabilityStatus { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 说明 /// public string Description { get; set; } public PumpCurve Clone() { return (PumpCurve)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }