lixiaojun
2025-02-18 56c82646ce8e2532a0739505ab6c49eb38129e84
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/04-scheme/00-core/CreateXhsSchemeViewModel.cs
@@ -1,6 +1,4 @@
using HStation.BLL;
namespace HStation.WinFrmUI
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 创建方案 view model
@@ -27,6 +25,7 @@
            this.ProjectSite = projectSite;
            this.HydroInfo = hydroInfo;
            this.AllSchemeList = allSchemeList;
            this.allChangeRecordList = new List<XhsSchemeChangeRecordViewModel>();
        }
@@ -56,12 +55,20 @@
        #region 基本信息
        /// <summary>
        /// 当前方案
        /// </summary>
        public XhsSchemeVmo Scheme { get; set; }
        /// <summary>
        /// 变更记录字典列表
        /// 所有可见视图列表
        /// </summary>
        public List<CreateXhsSchemeChangeRecordViewModel> ChangeRecordList { get; set; } = new();
        public List<HydroVisualViewModel> AllVisualViewModelList { get; set; }
        /// <summary>
        /// 变更记录列表
        /// </summary>
        public List<XhsSchemeChangeRecordViewModel> allChangeRecordList { get; set; }
        #endregion