lixiaojun
2024-12-05 f1efcbcf48fa6fc7dede2c5c7e91cc953b367fe0
Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeMain.cs
@@ -7,13 +7,32 @@
    /// </summary>
    [SysType("assets_pipe_main")]
    [SugarTable("assets_pipe_main")]
    public class AssetsPipeMain : BaseEntity, ISorter, System.ICloneable
    public class AssetsPipeMain : BaseEntity, ISorter, IFlags, IParas, ITagName, System.ICloneable
    {
        /// <summary>
        ///
        /// </summary>
        public AssetsPipeMain()
        { }
        public AssetsPipeMain(AssetsPipeMain rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.SeriesID = rhs.SeriesID;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.MinorLoss = rhs.MinorLoss;
            this.Hazen = rhs.Hazen;
            this.Darcy = rhs.Darcy;
            this.Manning = rhs.Manning;
            this.KeyWord = rhs.KeyWord;
            this.Paras = rhs.Paras;
            this.Flags = rhs.Flags;
            this.TagName = rhs.TagName;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
        /// <summary>
        /// 名称
@@ -38,7 +57,27 @@
        /// <summary>
        /// 系数
        /// </summary>
        public double? Coefficient { get; set; }
        public double MinorLoss { get; set; }
        /// <summary>
        /// 识别关键字
        /// </summary>
        public string KeyWord { get; set; }
        /// <summary>
        /// 参数
        /// </summary>
        public string Paras { get; set; }
        /// <summary>
        /// 标签
        /// </summary>
        public string Flags { get; set; }
        /// <summary>
        /// 标志
        /// </summary>
        public string TagName { get; set; }
        /// <summary>
        ///Hazen
@@ -68,9 +107,9 @@
        /// <summary>
        ///
        /// </summary>
        public AssetsPumpGroupAndMainMap Clone()
        public AssetsPumpGroupAndMainMapping Clone()
        {
            return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
            return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone();
        }
        object ICloneable.Clone()