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>
        ///
@@ -22,9 +21,10 @@
        {
            this.ID = rhs.ID;
            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;
@@ -34,9 +34,10 @@
        {
            this.ID = rhs.ID;
            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;
@@ -48,6 +49,11 @@
        public List<long> ParentIds { get; set; }
        /// <summary>
        /// 所属类别ID
        /// </summary>
        public long CatalogID { get; set; }
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }