duheng
2024-12-10 26917739c47252ecdc3b8f43eca6ebaf9cba6ac4
Service/HStation.Service.Assets.Core/01-entity/12-Compressor/AssetsCompressorCoefficient.cs
@@ -18,25 +18,34 @@
        public AssetsCompressorCoefficient(AssetsCompressorCoefficient rhs)
        {
            this.ID = rhs.ID;
            this.MainID = rhs.MainID;
            this.Name = rhs.Name;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.MinorLoss = rhs.MinorLoss;
            this.MinorLossCurve = rhs.MinorLossCurve;
        }
        public void Reset(AssetsCompressorCoefficient rhs)
        {
            this.ID = rhs.ID;
            this.MainID = rhs.MainID;
            this.Name = rhs.Name;
            this.Caliber = rhs.Caliber;
            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>
        /// 口径
@@ -54,6 +63,11 @@
        public double MinorLoss { get; set; }
        /// <summary>
        /// 水头损失曲线
        /// </summary>
        public string MinorLossCurve { get; set; }
        /// <summary>
        ///
        /// </summary>
        public AssetsCompressorCoefficient Clone()