duheng
2024-11-08 bb817e5d4ba0afa9848cc80375ee2e10105e106e
WinFrmUI/HStation.WinFrmUI.Basic/01-SysCatalogManage/00-ViewModel/SysCatalogViewModel.cs
@@ -2,6 +2,21 @@
{
    public class SysCatalogViewModel
    {
        public SysCatalogViewModel()
        {
        }
        public SysCatalogViewModel(SysCatalogViewModel rhs)
        {
            this.ID = rhs.ID;
            this.ParentID = rhs.ParentID;
            this.Description = rhs.Description;
            this.Name = rhs.Name;
            this.TypeID = rhs.TypeID;
            this.SortCode = rhs.SortCode;
            this.Code = rhs.Code;
        }
        public SysCatalogViewModel(Yw.Vmo.SysCatalogVmo rhs)
        {
            this.ID = rhs.ID;