lixiaojun
2024-08-08 941e0a89777a9fd15dce1955eace3bb9d6e1f79b
Service/HStation.Service.Revit.Core/02-parter/02-node/RevitTank.cs
@@ -15,26 +15,32 @@
        /// </summary>
        public RevitTank(RevitTank rhs) : base(rhs)
        {
            this.ModelType = rhs.ModelType;
            this.Elev = rhs.Elev;
            this.Quality = rhs.Quality;
            this.Position = rhs.Position;
            this.PoolElev = rhs.PoolElev;
            this.InitLevel = rhs.InitLevel;
            this.MinLevel = rhs.MinLevel;
            this.MaxLevel = rhs.MaxLevel;
            this.Diameter = rhs.Diameter;
            this.MinVol = rhs.MinVol;
            this.VolCurve = rhs.VolCurve;
            this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList();
        }
        /// <summary>
        /// 型号
        /// 初始水质
        /// </summary>
        public string ModelType { get; set; }
        public double Quality { get; set; }
        /// <summary>
        /// 位置
        /// </summary>
        public RevitPosition Position { get; set; }
        /// <summary>
        /// 池底标高
        /// </summary>
        public double Elev { get; set; }
        public double PoolElev { get; set; }
        /// <summary>
        /// 初始水位
@@ -66,15 +72,6 @@
        /// </summary>
        public string VolCurve { get; set; }
        /// <summary>
        /// 属性值列表
        /// </summary>
        public List<RevitPropValue> PropValueList { get; set; }
        /// <summary>
        /// 位置
        /// </summary>
        public RevitBoundingBox BoundingBox { get; set; }
    }
}