| | |
| | | public RevitJunction(RevitJunction rhs) : base(rhs) |
| | | { |
| | | this.ModelType = rhs.ModelType; |
| | | this.Quality = rhs.Quality; |
| | | this.Coefficient = rhs.Coefficient; |
| | | this.Elev = rhs.Elev; |
| | | this.Demand = rhs.Demand; |
| | | this.Pattern = rhs.Pattern; |
| | | this.DemandPattern = rhs.DemandPattern; |
| | | this.PropValueList = rhs.PropValueList; |
| | | this.BoundingBox = rhs.BoundingBox; |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 型号 |
| | | /// 型号信息 |
| | | /// </summary> |
| | | [JsonProperty("型号信息", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string ModelType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 初始水质 |
| | | /// </summary> |
| | | [JsonProperty("初始水质", NullValueHandling = NullValueHandling.Ignore)] |
| | | public double Quality { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 喷射系数 |
| | | /// </summary> |
| | | [JsonProperty("喷射系数", NullValueHandling = NullValueHandling.Ignore)] |
| | | public double Coefficient { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 标高 |
| | |
| | | /// 需水模式 |
| | | /// </summary> |
| | | [JsonProperty("需水模式", NullValueHandling = NullValueHandling.Ignore)] |
| | | public string Pattern { get; set; } |
| | | public string DemandPattern { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 属性值列表 |