namespace HStation.Model
{
///
/// 节点
///
public class RevitJunction : RevitParter, IRevitJunction
{
///
///
///
public RevitJunction() { }
///
///
///
public RevitJunction(RevitJunction rhs) : base(rhs)
{
this.ModelType = rhs.ModelType;
this.Elev = rhs.Elev;
this.Demand = rhs.Demand;
this.Pattern = rhs.Pattern;
this.X = rhs.X;
this.Y = rhs.Y;
this.Z = rhs.Z;
this.PropValueList = rhs.PropValueList?.Select(x => new RevitPropValue(x)).ToList();
}
///
/// 型号
///
public string ModelType { get; set; }
///
/// 标高
///
public double Elev { get; set; }
///
/// 需水量
///
public double Demand { get; set; }
///
/// 需水模式
///
public string Pattern { get; set; }
///
/// X坐标
///
public double X { get; set; }
///
/// Y坐标
///
public double Y { get; set; }
///
/// Z坐标
///
public double Z { get; set; }
///
/// 属性值列表
///
public List PropValueList { get; set; }
}
}