duheng
2024-12-04 ca1ccd0dd9f2d6936368f07d14a2b29b309fd151
Service/HStation.Service.Assets.Core/02-model/06-PipeLine/AssetsPipeMain.cs
@@ -6,7 +6,7 @@
    /// 管道管理
    /// </summary>
    [SysType("assets_pipe_main")]
    public class AssetsPipeMain : BaseModel, ISorter, System.ICloneable
    public class AssetsPipeMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable
    {
        /// <summary>
        ///
@@ -25,6 +25,9 @@
            this.Darcy = rhs.Darcy;
            this.Manning = rhs.Manning;
            this.KeyWord = rhs.KeyWord;
            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;
        }
@@ -41,6 +44,9 @@
            this.Darcy = rhs.Darcy;
            this.Manning = rhs.Manning;
            this.KeyWord = rhs.KeyWord;
            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;
        }
@@ -71,6 +77,21 @@
        public List<string> KeyWord { get; set; }
        /// <summary>
        /// 参数
        /// </summary>
        public Dictionary<string, string> Paras { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        public List<string> Flags { get; set; }
        /// <summary>
        /// 标志
        /// </summary>
        public string TagName { get; set; }
        /// <summary>
        /// 系数
        /// </summary>
        public double MinorLoss { get; set; }