lixiaojun
2024-08-13 9bd12d8745d7a886f088b07408526c504384444d
Service/HStation.Service.Revit.Core/02-parter/01-interface/01-node/IRevitJunction.cs
@@ -1,7 +1,7 @@
namespace HStation.Model
{
    /// <summary>
    /// 节点
    /// 连接节点
    /// [JUNCTIONS]节至少需要一个连接节点
    /// 如果没有提供需水量模式,那么连接节点需水量遵从[OPTIONS]节提供的缺省需水量模
    /// 式,或者如果没有指定缺省模式,采用模式1。如果缺省模式(或者模式1)不存在,那么
@@ -12,14 +12,19 @@
    {
        /// <summary>
        /// 需水量 (2024-7-25 lxj 修改为可空,参照EPANET2工具箱)
        /// 标高
        /// </summary>
        double Elev { get; set; }
        /// <summary>
        /// 需水量
        /// </summary>
        double? Demand { get; set; }
        /// <summary>
        /// 模式 (需水量模式ID)(可选的)
        /// 需水模式
        /// </summary>
        string Pattern { get; set; }
        string DemandPattern { get; set; }
    }