lixiaojun
2024-10-12 f2333318a31e92f6cbc3a572d8eb9fae9da0f892
Service/HStation.Service.Assets.Core/02-model/05-PipeLineRoughnessCoefficient/PipeRoughnessCoefficient.cs
@@ -6,16 +6,16 @@
    /// <summary>
    /// 管道粗糙系数
    /// </summary>
    [SysType("pipe_coarse_coefficient")]
    public class PipeRoughnessCoefficient : BaseModel, ISorter, System.ICloneable
    [SysType("assets_pipecoefficient")]
    public class AssetsPipeRoughnessCoefficient : BaseModel, ISorter, System.ICloneable
    {
        /// <summary>
        ///
        /// </summary>
        public PipeRoughnessCoefficient()
        public AssetsPipeRoughnessCoefficient()
        { }
        public PipeRoughnessCoefficient(PipeRoughnessCoefficient rhs)
        public AssetsPipeRoughnessCoefficient(AssetsPipeRoughnessCoefficient rhs)
        {
            this.PipeLineID = rhs.PipeLineID;
            this.ID = rhs.ID;
@@ -27,7 +27,7 @@
            this.SortCode = rhs.SortCode;
        }
        public void Reset(PipeRoughnessCoefficient rhs)
        public void Reset(AssetsPipeRoughnessCoefficient rhs)
        {
            this.PipeLineID = rhs.PipeLineID;
            this.ID = rhs.ID;
@@ -77,9 +77,9 @@
        /// <summary>
        ///
        /// </summary>
        public PumpGroupAndMainMap Clone()
        public AssetsPumpGroupAndMainMap Clone()
        {
            return (PumpGroupAndMainMap)this.MemberwiseClone();
            return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
        }
        object ICloneable.Clone()