lixiaojun
2025-01-21 ad1a5544539174ad4ec0beeddef96fa17e4f32fc
WinFrmUI/Yw.WinFrmUI.Hydro.Core/04-viewmodel/03-node/03-junction/02-emitter/03-cooling/HydroCoolingViewModel.cs
@@ -16,7 +16,6 @@
        public HydroCoolingViewModel(Yw.Model.HydroCoolingInfo rhs, Yw.Model.HydroModelInfo hydroInfo) : base(rhs, hydroInfo)
        {
            this.LowerLimit = rhs.LowerLimit;
            this.UpdatePropStatus(nameof(this.LowerLimit), rhs, nameof(rhs.LowerLimit));
        }
        /// <summary>
@@ -49,7 +48,6 @@
        {
            base.UpdateProperty();
            this.LowerLimit = this.Vmo.LowerLimit;
            this.UpdatePropStatus(nameof(this.LowerLimit), this.Vmo, nameof(this.Vmo.LowerLimit));
        }
        /// <summary>
@@ -59,7 +57,6 @@
        {
            base.UpdateVmoProperty();
            this.Vmo.LowerLimit = this.LowerLimit;
            this.Vmo.UpdatePropStatus(nameof(this.Vmo.LowerLimit), this, nameof(this.LowerLimit));
        }