lixiaojun
2025-02-06 146ca8c7eefe74d3b73c00a73e99e94e903be401
Service/HStation.Service.Assets.Core/02-model/08-Valve/AssetsValveSeries.cs
@@ -1,5 +1,4 @@
using HStation.Assets;
using Yw.Model;
using Yw.Model;
namespace HStation.Model
{
@@ -7,7 +6,7 @@
    /// 阀门系列
    /// </summary>
    [SysType("assets_valve_series")]
    public class AssetsValveSeries : BaseModel, IParas, IFlags, ITagName, ISorter, System.ICloneable
    public class AssetsValveSeries : BaseModel, IParas, IFlags, ITagName, ITreeSorter, System.ICloneable
    {
        /// <summary>
        ///
@@ -24,8 +23,8 @@
            this.ParentIds = rhs.ParentIds;
            this.CatalogID = rhs.CatalogID;
            this.Name = rhs.Name;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
            this.Flags = rhs.Flags?.ToList();
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
@@ -37,8 +36,8 @@
            this.ParentIds = rhs.ParentIds;
            this.CatalogID = rhs.CatalogID;
            this.Name = rhs.Name;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
            this.Flags = rhs.Flags?.ToList();
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;