duheng
2025-03-28 b266e82b9a377fa35a766f7a3a2f5aa95f3c9125
WinFrmUI/HStation.WinFrmUI.Auth.Core/04-role-projcet-menu/RoleTreeListViewModel.cs
@@ -1,5 +1,4 @@
using HStation.Service;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations;
namespace HStation.WinFrmUI
{
@@ -17,7 +16,7 @@
        /// <summary>
        ///
        /// </summary>
        public RoleTreeListViewModel(Yw.Vmo.Role rhs)
        public RoleTreeListViewModel(Yw.Vmo.RoleVmo rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
@@ -28,7 +27,7 @@
        /// <summary>
        ///
        /// </summary>
        public void Reset(Yw.Vmo.Role rhs)
        public void Reset(Yw.Vmo.RoleVmo rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
@@ -78,6 +77,6 @@
        /// <summary>
        ///
        /// </summary>
        public Yw.Vmo.Role Vmo { get; set; }
        public Yw.Vmo.RoleVmo Vmo { get; set; }
    }
}