| | |
| | | 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(); |
| | |
| | | public bool IsWorking { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 可信度 |
| | | /// </summary> |
| | | public Model.PumpCurve.eReliabilityStatus ReliabilityStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public List<CurvePointDto> PointQH { get; set; } |