Shuxia Ning
2025-01-15 9eb94e9eec2e2e164698e34d0481d66093c8655b
Service/HStation.Service.Revit.Core/00-core/PipeStatus.cs
@@ -16,11 +16,6 @@
        public const string Closed = "Closed";
        /// <summary>
        /// CV 意味着管道包含了限制流向的止回阀
        /// </summary>
        public const string CV = "CV";
        /// <summary>
        /// 包含
        /// </summary>
        public static bool Contains(string status)
@@ -37,12 +32,10 @@
            {
                return true;
            }
            if (status == CV)
            {
                return true;
            }
            return false;
        }
    }
}