namespace HStation.Model
|
{
|
/// <summary>
|
/// 水库
|
/// </summary>
|
public class RevitReservoir : RevitParter, IRevitReservoir
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public RevitReservoir() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public RevitReservoir(RevitReservoir rhs) : base(rhs)
|
{
|
this.ModelType = rhs.ModelType;
|
this.Quality = rhs.Quality;
|
this.Head = rhs.Head;
|
this.HeadPattern = rhs.HeadPattern;
|
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 Head { get; set; }
|
|
/// <summary>
|
/// 水头模式
|
/// </summary>
|
[JsonProperty("水头模式", NullValueHandling = NullValueHandling.Ignore)]
|
public string HeadPattern { get; set; }
|
|
/// <summary>
|
/// 属性值列表
|
/// </summary>
|
[JsonProperty("属性值列表", NullValueHandling = NullValueHandling.Ignore)]
|
public Dictionary<string, object> PropValueList { get; set; }
|
|
/// <summary>
|
/// 位置
|
/// </summary>
|
[JsonProperty("位置", NullValueHandling = NullValueHandling.Ignore)]
|
public RevitBoundingBox BoundingBox { get; set; }
|
}
|
}
|