From 5abb1581e61db7a0a8f790d01a4cbf5b53307ca4 Mon Sep 17 00:00:00 2001
From: yangyin <1850366751@qq.com>
Date: 星期四, 22 八月 2024 17:37:31 +0800
Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0

---
 WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/00-viewModel/SysPropGroupTreeListViewModel.cs |   18 +++++++++++++++---
 1 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/00-viewModel/SysPropGroupTreeListViewModel.cs b/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/00-viewModel/SysPropGroupTreeListViewModel.cs
index fbeb18a..e6d5cb3 100644
--- a/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/00-viewModel/SysPropGroupTreeListViewModel.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Basic/02-SysPropManage/00-viewModel/SysPropGroupTreeListViewModel.cs
@@ -2,9 +2,9 @@
 
 namespace HStation.WinFrmUI.Basic
 {
-    public class SysPropGroupTreeListViewModel : SysPropGroupDto
+    public class SysPropGroupTreeListViewModel
     {
-        public SysPropGroupTreeListViewModel(SysPropGroupDto rhs)
+        public SysPropGroupTreeListViewModel(Yw.Vmo.SysPropGroup rhs)
         {
             ID = rhs.ID;
             TypeID = rhs.TypeID;
@@ -14,12 +14,24 @@
             Description = rhs.Description;
         }
 
-        public void Reset(UpdateSysPropGroupInput rhs)
+        public void Reset(Yw.Vmo.SysPropGroup rhs)
         {
             ID = rhs.ID;
             Name = rhs.Name;
             Code = rhs.Code;
             Description = rhs.Description;
         }
+
+        public long ID { get; set; }
+
+        public long TypeID { get; set; }
+
+        public string Name { get; set; }
+
+        public string Code { get; set; }
+
+        public int SortCode { get; set; }
+
+        public string Description { get; set; }
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3