lixiaojun
2024-12-20 3f24b14f07ef82526b2e1d56cc808f226e91cbb9
Vmo/HStation.Vmo.Assets.Core/15-Tank/AssetsTankSeriesVmo.cs
@@ -8,19 +8,34 @@
         /// <summary>
         ///
         /// </summary>
         public AssetsTankSeriesVmo() { }
        public AssetsTankSeriesVmo()
        { }
         /// <summary>
         ///
         /// </summary>
         public AssetsTankSeriesVmo(Dto.AssetsTankSeriesDto rhs)
        public AssetsTankSeriesVmo(AssetsTankSeriesDto rhs)
         {
            this.ID=rhs.ID;
            this.CatalogID=rhs.CatalogID;
            this.ParentID = rhs.ParentID;
            this.Name=rhs.Name;
            this.ParentIds = rhs.ParentIds?.ToList();
            this.Paras = rhs.Paras == null ? null : new (rhs.Paras);
            this.Flags = rhs.Flags?.ToList();
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        /// <summary>
        ///
        /// </summary>
        public AssetsTankSeriesVmo(AssetsTankSeriesVmo rhs)
        {
            this.ID = rhs.ID;
            this.ParentID = rhs.ParentID;
            this.Name = rhs.Name;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.TagName=rhs.TagName;
            this.SortCode=rhs.SortCode;
            this.Description=rhs.Description;
@@ -42,9 +57,9 @@
        public string Name { get; set; }
         
        /// <summary>
        /// 父级id列表(版本控制
        /// 父级id
        ///</summary> 
        public List<long> ParentIds { get; set; }
        public long ParentID { get; set; }
         
        /// <summary>
        /// 参数
@@ -70,8 +85,5 @@
        /// 说明
        ///</summary> 
        public string Description { get; set; }
    }
}