| | |
| | | /// </summary> |
| | | public RevitTank(RevitTank rhs) : base(rhs) |
| | | { |
| | | this.ModelType = rhs.ModelType; |
| | | this.Elev = rhs.Elev; |
| | | this.Quality = rhs.Quality; |
| | | this.Position = rhs.Position; |
| | | this.PoolElev = rhs.PoolElev; |
| | | this.InitLevel = rhs.InitLevel; |
| | | this.MinLevel = rhs.MinLevel; |
| | | this.MaxLevel = rhs.MaxLevel; |
| | | this.Diameter = rhs.Diameter; |
| | | this.MinVol = rhs.MinVol; |
| | | this.VolCurve = rhs.VolCurve; |
| | | this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList(); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 型号 |
| | | /// 初始水质 |
| | | /// </summary> |
| | | public string ModelType { get; set; } |
| | | public double Quality { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 位置 |
| | | /// </summary> |
| | | public RevitPosition Position { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 池底标高 |
| | | /// </summary> |
| | | public double Elev { get; set; } |
| | | public double PoolElev { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 初始水位 |
| | |
| | | /// </summary> |
| | | public string VolCurve { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 属性值列表 |
| | | /// </summary> |
| | | public List<RevitPropValue> PropValueList { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 位置 |
| | | /// </summary> |
| | | public RevitBoundingBox BoundingBox { get; set; } |
| | | |
| | | } |
| | | } |