duheng
2024-11-27 2e3201e1be4247b47b2b8c2a60c56c0d6885b05a
WinFrmUI/Yw.WinFrmUI.Hydro.Core/01-scene/HydroSceneMgrViewModel.cs
@@ -13,7 +13,7 @@
        /// <summary>
        /// 
        /// </summary>
        public HydroSceneMgrViewModel(Yw.Dto.HydroSceneDto rhs)
        public HydroSceneMgrViewModel(Yw.Vmo.HydroSceneVmo rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
@@ -22,7 +22,7 @@
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
            this.Dto = rhs;
            this.Vmo = rhs;
        }
        /// <summary>
@@ -68,9 +68,9 @@
        public string Description { get; set; }
        /// <summary>
        /// Dto
        /// Vmo
        /// </summary>
        [Display(Name = "Dto")]
        public Yw.Dto.HydroSceneDto Dto { get; set; }
        [Display(Name = "Vmo")]
        public Yw.Vmo.HydroSceneVmo Vmo { get; set; }
    }
}