duheng
2024-11-17 a2a57963e160a319276c5c8499f16c9809056e4c
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/02-pump/01-pumpsinglematching/PumpSingleMatchingViewModel.cs
@@ -13,7 +13,7 @@
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.ParentID = rhs.PumpSeriesID;
            this.ParentID = rhs.SeriesID;
            this.IsPump = false;
        }
@@ -29,7 +29,7 @@
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.ParentID = rhs.PumpSeriesID;
            this.ParentID = rhs.SeriesID;
            this.IsPump = true;
            this.Erosion = rhs.Erosion;
            this.RatedPower = rhs.RatedPower;
@@ -112,4 +112,12 @@
        /// </summary>
        public string Description { get; set; }
    }
}
public class PhartViewModel
{
    public long ID { get; set; }
    public string OtherName { get; set; }
    public int Importance { get; set; }
    public int SortCode { get; set; }
}