duheng
2024-12-04 7079cbb505471a8d3251cac4e27c7a3841f8e656
Dto/HStation.Dto.Assets.Core/11-Exchanger/06-ExchangerCoefficient/AssetsExchangerCoefficientDto.cs
@@ -9,15 +9,22 @@
        public AssetsExchangerCoefficientDto(Model.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>
        /// id
        /// </summary>
        public long ID { get; set; }
        /// <summary>
        /// 型号ID
        /// </summary>
        public long MainID { get; set; }
        /// <summary>
        /// 名称
@@ -33,5 +40,10 @@
        /// 局阻系数
        /// </summary>
        public double MinorLoss { get; set; }
        /// <summary>
        /// 水头损失曲线
        /// </summary>
        public string MinorLossCurve { get; set; }
    }
}