From 5587341ac6e50a040972d33d83de632e7d0c87af Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期二, 10 十二月 2024 09:30:36 +0800 Subject: [PATCH] 优化导入 --- WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/04-scheme/00-core/CreateXhsSchemeViewModel.cs | 16 ++++++++++++++-- 1 files changed, 14 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..b1cbcd9 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,11 +47,16 @@ /// </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; } #endregion -- Gitblit v1.9.3