duheng
2024-10-23 ad6ccae53244330399fe871d78209faa988219c3
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/01-viewmodel/ValveMatchingViewModel.cs
@@ -1,4 +1,6 @@
namespace HStation.WinFrmUI
using HStation.Assets;
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 阀门匹配ViewModel
@@ -83,6 +85,13 @@
        public string ValveSetting { get; set; }
        /// <summary>
        /// 阀门开度
        /// </summary>
        [DisplayName("阀门开度")]
        [Browsable(true)]
        public int ValveLift { get; set; }
        /// <summary>
        /// 匹配型号
        /// </summary>
        [DisplayName("匹配型号")]
@@ -137,5 +146,12 @@
        [DisplayName("匹配水头损失曲线")]
        [Browsable(false)]
        public List<CurvePointMatchingViewModel> MatchingCurveQL { get; set; }
        /// <summary>
        /// 匹配阀门开度
        /// </summary>
        [DisplayName("匹配阀门开度")]
        [Browsable(true)]
        public int MatchingValveLift { get; set; }
    }
}