From d7c384ceea90e2adeedcd8199fa651392ab655de Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期三, 25 九月 2024 16:30:23 +0800 Subject: [PATCH] 继续优化属性选择界面 --- WinFrmUI/HStation.WinFrmUI.Basic/01-SysCatalogManage/00-ViewModel/SysPropMappingViewModel.cs | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Basic/01-SysCatalogManage/00-ViewModel/SysPropMappingViewModel.cs b/WinFrmUI/HStation.WinFrmUI.Basic/01-SysCatalogManage/00-ViewModel/SysPropMappingViewModel.cs index a684154..2801c7e 100644 --- a/WinFrmUI/HStation.WinFrmUI.Basic/01-SysCatalogManage/00-ViewModel/SysPropMappingViewModel.cs +++ b/WinFrmUI/HStation.WinFrmUI.Basic/01-SysCatalogManage/00-ViewModel/SysPropMappingViewModel.cs @@ -1,4 +1,5 @@ -锘縰sing Yw.Dto; +锘縰sing System.ComponentModel; +using Yw.Dto; using Yw.Vmo; namespace HStation.WinFrmUI.Basic @@ -29,5 +30,19 @@ public long ID { get; set; } public long ParentID { get; set; } public bool IsHave { get; set; } + + public long PropID { get; set; } + public string UnitName { get; set; } + public bool IsNull { get; set; } + public string DefaultValue { get; set; } + public bool Inherit { get; set; } + public bool IsGroup { get; set; } + + [DisplayName("鍒�")] + [Browsable(false)] + public List<long> ChoiceIds { get; set; } + + public string DisplayChoice { get; set; } + public List<SysPropMappingChoiceHaveVmo> ChoiceList { get; set; } } } \ No newline at end of file -- Gitblit v1.9.3