yangyin
2024-08-20 98e49c0dd42840a094837f7acae532bc237a719a
Service/HStation.Service.Revit.Core/01-model/RevitModel_Method.cs
@@ -64,6 +64,7 @@
                list.AddRange(this.Bluntheads);
            }
            if (this.Pipes != null && this.Pipes.Count > 0)
            {
                list.AddRange(this.Pipes);
@@ -149,7 +150,6 @@
                list.AddRange(this.Bluntheads);
            }
            return list;
        }
@@ -157,9 +157,9 @@
        /// 获取所有水源
        /// </summary>
        /// <returns></returns>
        public List<IRevitNode> GetAllWaterSources()
        public List<IRevitSource> GetAllWaterSources()
        {
            var list = new List<IRevitNode>();
            var list = new List<IRevitSource>();
            if (this.Reservoirs != null && this.Reservoirs.Count > 0)
            {
                list.AddRange(this.Reservoirs);
@@ -255,7 +255,6 @@
            {
                list.AddRange(this.Bluntheads);
            }
            return list;
        }