duheng
2024-12-04 7079cbb505471a8d3251cac4e27c7a3841f8e656
Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerCoefficient.cs
@@ -17,23 +17,32 @@
        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>
        /// 材料
@@ -46,6 +55,11 @@
        public double MinorLoss { get; set; }
        /// <summary>
        /// 水头损失曲线
        /// </summary>
        public string MinorLossCurve { get; set; }
        /// <summary>
        ///
        /// </summary>
        public AssetsExchangerCoefficient Clone()