lixiaojun
2024-08-22 ff479382581a0681bbc4ea9c50763f48a1a6f4a9
Service/HStation.Service.Revit.Core/02-parter/02-node/02-tank/RevitTank.cs
文件名从 Service/HStation.Service.Revit.Core/02-parter/02-node/RevitTank.cs 修改
@@ -3,7 +3,7 @@
    /// <summary>
    /// 姘存睜
    /// </summary>
    public class RevitTank : RevitParter, IRevitTank
    public class RevitTank : RevitSource
    {
        /// <summary>
        /// 
@@ -15,8 +15,6 @@
        /// </summary>
        public RevitTank(RevitTank rhs) : base(rhs)
        {
            this.Quality = rhs.Quality;
            this.Position = rhs.Position;
            this.PoolElev = rhs.PoolElev;
            this.InitLevel = rhs.InitLevel;
            this.MinLevel = rhs.MinLevel;
@@ -24,18 +22,8 @@
            this.Diameter = rhs.Diameter;
            this.MinVol = rhs.MinVol;
            this.VolCurve = rhs.VolCurve;
            this.OverFlow = rhs.OverFlow;
        }
        /// <summary>
        /// 鍒濆姘磋川
        /// </summary>
        public double Quality { get; set; }
        /// <summary>
        /// 浣嶇疆
        /// </summary>
        public RevitPosition Position { get; set; }
        /// <summary>
        /// 姹犲簳鏍囬珮
@@ -72,6 +60,11 @@
        /// </summary>
        public string VolCurve { get; set; }
        /// <summary>
        /// 鏄惁鍏佽婧㈡祦
        /// </summary>
        public bool OverFlow { get; set; }
    }
}