lixiaojun
2024-10-10 19542281826dbf98a7e4ebf9e7dd4a0c31247c7f
WinFrmUI/Yw.WinFrmUI.Hydro.Core/03-property/00-core/HydroParterPropertyViewModel.cs
@@ -24,7 +24,7 @@
            this.Code = rhs.Code;
            this.ModelType = rhs.ModelType;
            this.DbId = rhs.DbId;
            this.Flags = rhs.Flags?.ToList();
            this.Flags = Yw.Untity.FlagsHelper.ToString(rhs.Flags);
            this.Description = rhs.Description;
        }
@@ -98,8 +98,9 @@
        [Category("基础信息")]
        [DisplayName("标签")]
        [PropertyOrder(8)]
        [IsHydroFlagsPro(true)]
        [Browsable(true)]
        public virtual List<string> Flags { get; set; }
        public virtual string Flags { get; set; }
        /// <summary>
        /// 说明
@@ -125,7 +126,7 @@
            this.ModelType = rhs.ModelType;
            this.DbId = rhs.DbId;
            this.DbLocked = rhs.DbLocked;
            this.Flags = rhs.Flags?.ToList();
            this.Flags = Yw.Untity.FlagsHelper.ToString(rhs.Flags);
            this.Description = rhs.Description;
        }