Shuxia Ning
2024-12-02 13e69c09c5ac97e0294d64617dfb934e34bb4264
Service/HStation.Service.Assets.Core/02-model/03-Elbow/AssetsElbowMain.cs
@@ -7,7 +7,7 @@
    /// 业务站
    /// </summary>
    [SysType("assets_elbow_main")]
    public class AssetsElbowMain : BaseModel, ISorter, System.ICloneable
    public class AssetsElbowMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable
    {
        /// <summary>
        ///
@@ -23,8 +23,11 @@
            this.Material = rhs.Material;
            this.Angle = rhs.Angle;
            this.MinorLoss = rhs.MinorLoss;
            this.ElbowLengthType = rhs.ElbowLengthType;
            this.ElbowType = rhs.ElbowType;
            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;
        }
@@ -38,8 +41,11 @@
            this.Material = rhs.Material;
            this.Angle = rhs.Angle;
            this.MinorLoss = rhs.MinorLoss;
            this.ElbowLengthType = rhs.ElbowLengthType;
            this.ElbowType = rhs.ElbowType;
            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;
        }
@@ -62,7 +68,7 @@
        /// <summary>
        /// 管路连接长度
        /// </summary>
        public eLengthType? ElbowLengthType { get; set; }
        public eElbowType? ElbowType { get; set; }
        /// <summary>
        /// 角度
@@ -80,6 +86,21 @@
        public double MinorLoss { 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 List<string> KeyWord { get; set; }