From 9afc96a7f7f759ae42fbe598a88a865fe737c6bd Mon Sep 17 00:00:00 2001 From: Shuxia Ning <NingShuxia0927@outlook.com> Date: 星期二, 10 十二月 2024 10:43:21 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0 --- 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