From 4db2942556a805f3b46d0b088521f062c581352e Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期四, 19 十二月 2024 16:17:53 +0800 Subject: [PATCH] 优化换热器曲线 --- WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/04-scheme/00-core/CreateXhsSchemeViewModel.cs | 20 ++++++++++++++++++-- 1 files changed, 18 insertions(+), 2 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/04-scheme/00-core/CreateXhsSchemeViewModel.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/04-scheme/00-core/CreateXhsSchemeViewModel.cs index f127d2a..6f2d5e2 100644 --- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/04-scheme/00-core/CreateXhsSchemeViewModel.cs +++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/04-scheme/00-core/CreateXhsSchemeViewModel.cs @@ -15,11 +15,18 @@ /// <summary> /// /// </summary> - public CreateXhsSchemeViewModel(XhsProjectVmo project, XhsProjectSiteVmo projectSite, Yw.Model.HydroModelInfo hydroInfo) + public CreateXhsSchemeViewModel + ( + XhsProjectVmo project, + XhsProjectSiteVmo projectSite, + Yw.Model.HydroModelInfo hydroInfo, + List<XhsSchemeVmo> allSchemeList + ) { this.Project = project; this.ProjectSite = projectSite; this.HydroInfo = hydroInfo; + this.AllSchemeList = allSchemeList; } @@ -40,12 +47,21 @@ /// </summary> public Yw.Model.HydroModelInfo HydroInfo { get; set; } + /// <summary> + /// 鎵�鏈夋柟妗堝垪琛� + /// </summary> + public List<XhsSchemeVmo> AllSchemeList { get; set; } + #endregion #region 鍩烘湰淇℃伅 - public XhsScheme Scheme { get; set; } + public XhsSchemeVmo Scheme { get; set; } + /// <summary> + /// 鍙樻洿璁板綍瀛楀吀鍒楄〃 + /// </summary> + public List<CreateXhsSchemeChangeRecordViewModel> ChangeRecordList { get; set; } = new(); #endregion -- Gitblit v1.9.3