lixiaojun
2024-07-15 49bca0faca96aa1149ff6c6194102dfe3de8db87
Service/HStation.Service.Revit.Core/02-parter/02-node/RevitReservoir.cs
@@ -16,24 +16,16 @@
        public RevitReservoir(RevitReservoir rhs) : base(rhs)
        {
            this.ModelType = rhs.ModelType;
            this.Elev = rhs.Elev;
            this.Head = rhs.Head;
            this.Pattern = rhs.Pattern;
            this.X = rhs.X;
            this.Y = rhs.Y;
            this.Z = rhs.Z;
            this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList();
            this.BoundingBox = rhs.BoundingBox;
        }
        /// <summary>
        /// 型号
        /// </summary>
        public string ModelType { get; set; }
        /// <summary>
        /// 标高
        /// </summary>
        public double Elev { get; set; }
        /// <summary>
        /// 总水头
@@ -46,26 +38,14 @@
        public string Pattern { get; set; }
        /// <summary>
        /// X坐标
        /// </summary>
        public double X { get; set; }
        /// <summary>
        /// Y坐标
        /// </summary>
        public double Y { get; set; }
        /// <summary>
        /// Z坐标
        /// </summary>
        public double Z { get; set; }
        /// <summary>
        /// 属性值列表
        /// </summary>
        public List<RevitPropValue> PropValueList { get; set; }
        /// <summary>
        /// 位置
        /// </summary>
        public RevitBoundingBox BoundingBox { get; set; }
    }