duheng
2024-09-23 a1730187c168a5d0bd54eb27c1083eb1cc98be96
WinFrmUI/HStation.WinFrmUI.Xhs.Core/04-simulation/06-simulation/01-AutoMatching/01-ViewModel/PumpMatchingViewModel.cs
@@ -1,4 +1,6 @@
namespace HStation.WinFrmUI
using HStation.WinFrmUI.Xhs;
namespace HStation.WinFrmUI
{
    public class PumpMatchingViewModel
    {
@@ -12,6 +14,13 @@
        [DisplayName("名称")]
        [Browsable(true)]
        public string Name { get; set; }
        /// <summary>
        /// 编码
        /// </summary>
        [DisplayName("编码")]
        [Browsable(true)]
        public string Code { get; set; }
        /// <summary>
        /// 型号名
@@ -55,12 +64,48 @@
        [Browsable(true)]
        public bool DbLocked { get; set; }
        [DisplayName("DbID")]
        [DisplayName("匹配前DbID")]
        [Browsable(false)]
        public long DbID { get; set; }
        public string DbID { get; set; }
        [DisplayName("ChartDbID")]
        [Browsable(false)]
        public long ChartDbID { get; set; }
        public string ChartDbID { get; set; }
        [DisplayName("匹配后DbID")]
        [Browsable(false)]
        public string MatchingDbID { get; set; }
        [DisplayName("匹配后ChartDbID")]
        [Browsable(false)]
        public long? MatchingChartDbID { get; set; }
        /// <summary>
        /// 修改后额定功率
        /// </summary>
        [DisplayName("修改后额定功率")]
        [Browsable(true)]
        public double? MatchingRatedP { get; set; }
        /// <summary>
        ///  修改后额定流量
        /// </summary>
        [DisplayName("修改后额定流量")]
        [Browsable(true)]
        public double? MatchingRatedQ { get; set; }
        /// <summary>
        /// 修改后额定扬程
        /// </summary>
        [DisplayName("修改后额定扬程")]
        [Browsable(true)]
        public double? MatchingRatedH { get; set; }
        /// <summary>
        /// 修改后额定转速
        /// </summary>
        [DisplayName("修改后额定转速")]
        [Browsable(true)]
        public double? MatchingRatedN { get; set; }
    }
}