From bfd1b73be85fd66ee37031eadcd4d09e7dafb52f Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期四, 13 二月 2025 18:51:40 +0800 Subject: [PATCH] 开始增加构件分组功能 --- WinFrmUI/Yw.WinFrmUI.Hydro.Core/19-pump/02-extend/02-list/HydroPumpListItemExtendViewModel.cs | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/WinFrmUI/Yw.WinFrmUI.Hydro.Core/19-pump/02-extend/HydroPumpListItemExtendViewModel.cs b/WinFrmUI/Yw.WinFrmUI.Hydro.Core/19-pump/02-extend/02-list/HydroPumpListItemExtendViewModel.cs similarity index 89% rename from WinFrmUI/Yw.WinFrmUI.Hydro.Core/19-pump/02-extend/HydroPumpListItemExtendViewModel.cs rename to WinFrmUI/Yw.WinFrmUI.Hydro.Core/19-pump/02-extend/02-list/HydroPumpListItemExtendViewModel.cs index a85eeea..799bd00 100644 --- a/WinFrmUI/Yw.WinFrmUI.Hydro.Core/19-pump/02-extend/HydroPumpListItemExtendViewModel.cs +++ b/WinFrmUI/Yw.WinFrmUI.Hydro.Core/19-pump/02-extend/02-list/HydroPumpListItemExtendViewModel.cs @@ -15,6 +15,7 @@ Yw.Model.HydroModelInfo hydroInfo ) { + this.BeginGroup = string.IsNullOrEmpty(rhs.BeginGroup) ? string.Empty : rhs.BeginGroup; this.Code = rhs.Code; this.Name = rhs.Name; if (allPumpList != null && allPumpList.Count > 0) @@ -30,6 +31,12 @@ } /// <summary> + /// 鍒嗙粍 + /// </summary> + [Display(Name = "鍒嗙粍")] + public string BeginGroup { get; set; } + + /// <summary> /// 缂栫爜 /// </summary> [Display(Name = "缂栫爜")] -- Gitblit v1.9.3