From 88c13046c69ebeb0bc323c8d81501f5933f5a81f Mon Sep 17 00:00:00 2001 From: duheng <2784771470@qq.com> Date: 星期四, 26 九月 2024 16:19:08 +0800 Subject: [PATCH] 修改匹配细节 --- WinFrmUI/HStation.WinFrmUI.Basic/00-SysTypeManage/00-viewModel/SysTypeViewModel.cs | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Basic/00-SysTypeManage/00-viewModel/SysTypeViewModel.cs b/WinFrmUI/HStation.WinFrmUI.Basic/00-SysTypeManage/00-viewModel/SysTypeViewModel.cs index ef43c9f..f81cfcc 100644 --- a/WinFrmUI/HStation.WinFrmUI.Basic/00-SysTypeManage/00-viewModel/SysTypeViewModel.cs +++ b/WinFrmUI/HStation.WinFrmUI.Basic/00-SysTypeManage/00-viewModel/SysTypeViewModel.cs @@ -5,16 +5,16 @@ { public class SysTypeViewModel { - public SysTypeViewModel(Yw.Vmo.SysType rhs) + public SysTypeViewModel(Yw.Vmo.SysTypeVmo rhs) { this.ID = rhs.ID; this.Description = rhs.Description; this.Name = rhs.Name; - if (rhs.ExtendType == Yw.Vmo.eExtendType.None) + if (rhs.ExtendType == Yw.Basic.eExtendType.None) { this.ExtendTypeDisPlayName = "鏃�"; } - else if (rhs.ExtendType == Yw.Vmo.eExtendType.Config) + else if (rhs.ExtendType == Yw.Basic.eExtendType.Config) { this.ExtendTypeDisPlayName = "閰嶇疆"; } @@ -27,16 +27,16 @@ this.SortCode = rhs.SortCode; } - public void Reset(Yw.Vmo.SysType rhs) + public void Reset(Yw.Vmo.SysTypeVmo rhs) { this.ID = rhs.ID; this.Description = rhs.Description; this.Name = rhs.Name; - if (rhs.ExtendType == Yw.Vmo.eExtendType.None) + if (rhs.ExtendType == Yw.Basic.eExtendType.None) { this.ExtendTypeDisPlayName = "鏃�"; } - else if (rhs.ExtendType == Yw.Vmo.eExtendType.Config) + else if (rhs.ExtendType == Yw.Basic.eExtendType.Config) { this.ExtendTypeDisPlayName = "閰嶇疆"; } -- Gitblit v1.9.3