duheng
2025-03-28 9be9ba4e159969fb5e32648c2c34e912ccc3ae6d
Service/HStation.Service.Assets.Core/02-model/07-Threelink/AssetsThreelinkMain.cs
@@ -3,10 +3,10 @@
namespace HStation.Model
{
    /// <summary>
    /// 业务站
    /// 三通型号
    /// </summary>
    [SysType("assets_threelink_main")]
    public class AssetsThreelinkMain : BaseModel, ISorter, System.ICloneable
    public class AssetsThreelinkMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable
    {
        /// <summary>
        ///
@@ -21,10 +21,12 @@
            this.Name = rhs.Name;
            this.Material = rhs.Material;
            this.Caliber = rhs.Caliber;
            this.MinorLoss = rhs.MinorLoss;
            this.RunThroughMinorLoss = rhs.RunThroughMinorLoss;
            this.BranchThroughMinorLoss = rhs.BranchThroughMinorLoss;
            this.KeyWord = rhs.KeyWord;
            this.KeyWords = rhs.KeyWords;
            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,10 +38,12 @@
            this.Name = rhs.Name;
            this.Material = rhs.Material;
            this.Caliber = rhs.Caliber;
            this.MinorLoss = rhs.MinorLoss;
            this.RunThroughMinorLoss = rhs.RunThroughMinorLoss;
            this.BranchThroughMinorLoss = rhs.BranchThroughMinorLoss;
            this.KeyWord = rhs.KeyWord;
            this.KeyWords = rhs.KeyWords;
            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;
        }
@@ -65,12 +69,7 @@
        public string Material { get; set; }
        /// <summary>
        /// 系数
        /// </summary>
        public double MinorLoss { get; set; }
        /// <summary>
        /// 运行通过损失系数
        /// 主管通过损失系数
        /// </summary>
        public double? RunThroughMinorLoss { get; set; }
@@ -82,7 +81,22 @@
        /// <summary>
        /// 识别关键字
        /// </summary>
        public List<string> KeyWord { get; set; }
        public List<string> KeyWords { 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>
        /// 排序码
@@ -97,9 +111,9 @@
        /// <summary>
        ///
        /// </summary>
        public AssetsPumpGroupAndMainMap Clone()
        public AssetsPumpGroupAndMainMapping Clone()
        {
            return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
            return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone();
        }
        object ICloneable.Clone()