using HStation.RevitDev.Model.AttributeClass; using System.ComponentModel; namespace HStation.RevitDev.RevitDataExport.Entity.ElementModels { [RevitType(Model.ModelEnum.RevitType.RFT_Valve)] public class ValveModel : ElementModel { public ValveModel(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; } } }