From eabeb23dba205de82d8d64c9fc361d3d7b95588d Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期三, 19 二月 2025 12:50:43 +0800
Subject: [PATCH] 能耗分析整理

---
 WinFrmUI/HStation.WinFrmUI.Auth.Core/03-user/UserViewModel.cs |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Auth.Core/03-user/UserViewModel.cs b/WinFrmUI/HStation.WinFrmUI.Auth.Core/03-user/UserViewModel.cs
index 31e664d..7d48efe 100644
--- a/WinFrmUI/HStation.WinFrmUI.Auth.Core/03-user/UserViewModel.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Auth.Core/03-user/UserViewModel.cs
@@ -17,14 +17,14 @@
         /// <summary>
         ///
         /// </summary>
-        public UserViewModel(Yw.Vmo.User rhs)
+        public UserViewModel(Yw.Vmo.UserVmo rhs)
         {
             this.ID = rhs.ID;
             this.CorpID = rhs.CorpID;
             this.Name = rhs.Name;
             this.Tag = rhs.Tag;
-            this.LoginName = rhs.LoginName;
-            this.LoginPwd = rhs.LoginPwd;
+            // this.LoginName = rhs.Name;
+            //     this.LoginPwd = rhs.LoginPwd;
             this.AdminType = rhs.AdminType;
             this.UseStatus = rhs.UseStatus;
             this.Description = rhs.Description;
@@ -34,14 +34,14 @@
         /// <summary>
         ///
         /// </summary>
-        public void Reset(Yw.Vmo.User rhs)
+        public void Reset(Yw.Vmo.UserVmo rhs)
         {
             this.ID = rhs.ID;
             this.CorpID = rhs.CorpID;
             this.Name = rhs.Name;
             this.Tag = rhs.Tag;
-            this.LoginName = rhs.LoginName;
-            this.LoginPwd = rhs.LoginPwd;
+            //    this.LoginName = rhs.LoginName;
+            //     this.LoginPwd = rhs.LoginPwd;
             this.AdminType = rhs.AdminType;
             this.UseStatus = rhs.UseStatus;
             this.Description = rhs.Description;
@@ -70,10 +70,10 @@
         public string LoginPwd { get; set; }
 
         [Display(Name = "绠$悊绫诲瀷")]
-        public eAdminType AdminType { get; set; }
+        public Yw.Model.eAdminType AdminType { get; set; }
 
         [Display(Name = "浣跨敤鐘舵��")]
-        public eUseStatus UseStatus { get; set; }
+        public Yw.Model.eUseStatus UseStatus { get; set; }
 
         /// <summary>
         /// 鎺掑簭鐮�
@@ -94,6 +94,6 @@
         /// <summary>
         ///
         /// </summary>
-        public Yw.Vmo.User Vmo { get; set; }
+        public Yw.Vmo.UserVmo Vmo { get; set; }
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3