Application/IStation.Application.Main/pipe_line/logic/dto/PumpCurveLogicDto.cs
@@ -32,6 +32,7 @@
            this.OtherName = rhs.OtherName;
            this.SortCode = rhs.SortCode;
            this.IsWorking = rhs.IsWorking;
            this.ReliabilityStatus = rhs.ReliabilityStatus;
            this.PointQH = rhs.CurveInfo?.CurveQH?.GetFitPoints(20)?.Select(x=>new CurvePointDto(x.X,x.Y)).ToList();
            this.PointQP = rhs.CurveInfo?.CurveQP?.GetFitPoints(20)?.Select(x => new CurvePointDto(x.X, x.Y)).ToList();
            this.PointQE = rhs.CurveInfo?.CurveQE?.GetFitPoints(20)?.Select(x => new CurvePointDto(x.X, x.Y)).ToList();
@@ -97,6 +98,11 @@
        public bool IsWorking { get; set; }
        /// <summary>
        /// 可信度
        /// </summary>
        public Model.PumpCurve.eReliabilityStatus ReliabilityStatus { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public List<CurvePointDto> PointQH { get; set; }