lixiaojun
2025-02-06 146ca8c7eefe74d3b73c00a73e99e94e903be401
Service/HStation.Service.Assets.Core/02-model/07-Threelink/AssetsThreelinkSeries.cs
@@ -3,10 +3,9 @@
namespace HStation.Model
{
    /// <summary>
    /// 阀门系列
    /// 三通系列
    /// </summary>
    [SysType("assets_threelink_series")]
    public class AssetsThreelinkSeries : BaseModel, IParas, IFlags, ITagName, ISorter, System.ICloneable
    public class AssetsThreelinkSeries : BaseModel, IParas, IFlags, ITagName, ITreeSorter, System.ICloneable
    {
        /// <summary>
        ///
@@ -23,8 +22,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;
@@ -36,8 +35,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;