| | |
| | | public AssetsExchangerCoefficient(AssetsExchangerCoefficient rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.MainID = rhs.MainID; |
| | | this.Name = rhs.Name; |
| | | this.Material = rhs.Material; |
| | | this.MinorLoss = rhs.MinorLoss; |
| | | this.MinorLossCurve = rhs.MinorLossCurve; |
| | | } |
| | | |
| | | public void Reset(AssetsExchangerCoefficient rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.MainID = rhs.MainID; |
| | | this.Name = rhs.Name; |
| | | this.Material = rhs.Material; |
| | | this.MinorLoss = rhs.MinorLoss; |
| | | this.MinorLossCurve = rhs.MinorLossCurve; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 名称 |
| | | /// </summary> |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 型号ID |
| | | /// </summary> |
| | | public long MainID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 材料 |
| | |
| | | public double MinorLoss { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 水头损失曲线 |
| | | /// </summary> |
| | | public string MinorLossCurve { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public AssetsExchangerCoefficient Clone() |