duheng
2024-12-04 ca1ccd0dd9f2d6936368f07d14a2b29b309fd151
Service/HStation.Service.Assets.Core/01-entity/06-PipeLine/AssetsPipeCoefficient.cs
@@ -8,13 +8,25 @@
    /// </summary>
    [SysType("assets_pipe_efficient")]
    [SugarTable("assets_pipe_coefficient")]
    public class AssetsPipeCoefficient : BaseEntity, ISorter, System.ICloneable
    public class AssetsPipeCoefficient : BaseEntity, System.ICloneable
    {
        /// <summary>
        ///
        /// </summary>
        public AssetsPipeCoefficient()
        { }
        public AssetsPipeCoefficient(AssetsPipeCoefficient rhs)
        {
            this.ID = rhs.ID;
            this.PipeLineID = rhs.PipeLineID;
            this.Name = rhs.Name;
            this.Caliber = rhs.Caliber;
            this.Material = rhs.Material;
            this.eAlgorithmType = rhs.eAlgorithmType;
            this.StartValue = rhs.StartValue;
            this.EndValue = rhs.EndValue;
        }
        /// <summary>
        /// 名称
@@ -32,6 +44,21 @@
        public long PipeLineID { get; set; }
        /// <summary>
        /// 口径
        /// </summary>
        public double? Caliber { get; set; }
        /// <summary>
        /// 材料
        /// </summary>
        public string Material { get; set; }
        /// <summary>
        /// 局阻系数
        /// </summary>
        public double MinorLoss { get; set; }
        /// <summary>
        /// 开始值
        /// </summary>
        public string StartValue { get; set; }
@@ -42,21 +69,11 @@
        public string EndValue { get; set; }
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }
        /// <summary>
        /// 说明
        /// </summary>
        public string Description { get; set; }
        /// <summary>
        ///
        /// </summary>
        public AssetsPumpGroupAndMainMap Clone()
        public AssetsPumpGroupAndMainMapping Clone()
        {
            return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
            return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone();
        }
        object ICloneable.Clone()