duheng
2024-08-12 1a12ef2743134f7fdea6d0abbfec34543b85bdb5
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; }
    }
}