duheng
2024-12-04 ca1ccd0dd9f2d6936368f07d14a2b29b309fd151
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/01-viewmodel/ThreelinkMatchingViewModel.cs
@@ -5,7 +5,6 @@
    /// </summary>
    public class ThreelinkMatchingViewModel
    {
        /// <summary>
        /// ID
        /// </summary>
@@ -69,10 +68,6 @@
        [Browsable(true)]
        public double? MinorLoss { get; set; }
        /// <summary>
        /// 匹配型号
        /// </summary>
@@ -86,6 +81,20 @@
        [DisplayName("MatchingDbId")]
        [Browsable(false)]
        public string MatchingDbId { get; set; }
        /// <summary>
        /// 运行通过损失系数
        /// </summary>
        [DisplayName("运行通过损失系数")]
        [Browsable(true)]
        public double? RunThroughCoefficient { get; set; }
        /// <summary>
        /// 支管通过损失系数
        /// </summary>
        [DisplayName("支管通过损失系数")]
        [Browsable(true)]
        public double? BranchThroughCoefficient { get; set; }
        /// <summary>
        /// 匹配材质
@@ -107,5 +116,19 @@
        [DisplayName("匹配损失系数")]
        [Browsable(true)]
        public double? MatchingMinorLoss { get; set; }
        /// <summary>
        /// 运行通过损失系数
        /// </summary>
        [DisplayName("匹配运行通过损失系数")]
        [Browsable(true)]
        public double? MatchingRunThroughCoefficient { get; set; }
        /// <summary>
        /// 支管通过损失系数
        /// </summary>
        [DisplayName("匹配支管通过损失系数")]
        [Browsable(true)]
        public double? MatchingBranchThroughCoefficient { get; set; }
    }
}