duheng
2024-09-23 d9b8c4b8639e5239cea8fbb88fa2ae6fa1ac706b
WinFrmUI/Yw.WinFrmUI.Hydro.Core/03-property/00-core/HydroParterPropertyViewModel.cs
@@ -84,11 +84,20 @@
        public string DbId { get; set; }
        /// <summary>
        /// 锁定
        /// </summary>
        [Category("基础信息")]
        [DisplayName("锁定")]
        [PropertyOrder(7)]
        [Browsable(true)]
        public bool DbLocked { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        [Category("基础信息")]
        [DisplayName("标签")]
        [PropertyOrder(7)]
        [PropertyOrder(8)]
        [Browsable(true)]
        public List<string> Flags { get; set; }
@@ -97,7 +106,7 @@
        /// </summary>
        [Category("基础信息")]
        [DisplayName("说明")]
        [PropertyOrder(8)]
        [PropertyOrder(9)]
        [MultiText]
        [Browsable(true)]
        public string Description { get; set; }
@@ -114,6 +123,8 @@
            this.Name = rhs.Name;
            this.Code = rhs.Code;
            this.ModelType = rhs.ModelType;
            this.DbId = rhs.DbId;
            this.DbLocked = rhs.DbLocked;
            this.Flags = rhs.Flags?.ToList();
            this.Description = rhs.Description;
        }