Shuxia Ning
2024-12-09 f97b3ccbfd63b62ec875223fcc417633f6ce2989
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/09-Tank/TankSingleMatchingViewModel.cs
@@ -8,7 +8,6 @@
            this.Name = rhs.Name;
            this.Description = rhs.Description;
            this.SortCode = rhs.SortCode;
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.Description = rhs.Description;
            this.SeriesID = rhs.SeriesID;
@@ -28,18 +27,39 @@
        public long SeriesID { get; set; }
        /// <summary>
        /// 口径
        /// 最低水位
        /// </summary>
        [DisplayName("口径(mm)")]
        [DisplayName("最低水位")]
        [Browsable(true)]
        public string Caliber { get; set; }
        public double MinLevel { get; set; }
        /// <summary>
        /// 材料
        /// 最高水位
        /// </summary>
        [DisplayName("材料")]
        [DisplayName("最高水位")]
        [Browsable(true)]
        public string Material { get; set; }
        public double MaxLevel { get; set; }
        /// <summary>
        /// 公称直径
        /// </summary>
        [DisplayName("公称直径")]
        [Browsable(true)]
        public double DN { get; set; }
        /// <summary>
        /// 最小容积
        /// </summary>
        [DisplayName("最小容积")]
        [Browsable(true)]
        public double MinVol { get; set; }
        /// <summary>
        /// 是否允许溢流
        /// </summary>
        [DisplayName("是否溢流")]
        [Browsable(true)]
        public bool OverFlow { get; set; }
        /// <summary>
        /// 损失系数
@@ -54,13 +74,6 @@
        [DisplayName("说明")]
        [Browsable(true)]
        public string Description { get; set; }
        /// <summary>
        /// 阀门开度
        /// </summary>
        [DisplayName("阀门开度")]
        [Browsable(true)]
        public int? TankLift { get; set; }
        /// <summary>
        /// 排序码
@@ -96,5 +109,12 @@
        [DisplayName("关键字")]
        [Browsable(true)]
        public string KeyWord { get; set; }
        /// <summary>
        /// 阀门设置
        /// </summary>
        [DisplayName("阀门设置")]
        [Browsable(true)]
        public string TankSetting { get; set; }
    }
}