using HStation.RevitDev.Model.AttributeClass;
|
using System.ComponentModel;
|
|
namespace HStation.RevitDev.RevitDataExport.Entity.ElementModels
|
{
|
[RevitType(Model.ModelEnum.RevitType.RFT_WaterBox)]
|
public class WaterBoxModel : ElementModel
|
{
|
public WaterBoxModel(ElementModel baseModel)
|
{
|
base.编号 = baseModel.编号;
|
base.连接构件 = baseModel.连接构件;
|
base.名称 = baseModel.名称;
|
base.系统类型 = baseModel.系统类型;
|
base.楼层 = baseModel.楼层;
|
base.包围框 = baseModel.包围框;
|
}
|
|
[Description("编号")]
|
public new string 编号 { get; set; }
|
|
[Description("连接构件")]
|
public new string 连接构件 { get; set; }
|
|
[Description("水位")]
|
public string 水位 { get; set; }
|
|
[Description("最低水位")]
|
public string 最低水位 { get; set; }
|
|
|
[Description("最高水位")]
|
public string 最高水位 { get; set; }
|
}
|
}
|