1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
| using HStation.RevitDev.Model.AttributeClass;
| using System.ComponentModel;
|
| namespace HStation.RevitDev.Model.Enum
| {
| public enum RevitFamilyType
| {
| [Description("未知")]
| [Export(ExportFamilyType.EFT_Unknown)]
| RFT_Unknown = 0,
|
| [Description("水泵")]
| [Export(ExportFamilyType.EFT_Pump)]
| RFT_Pump,
|
| [Description("管道")]
| [Export(ExportFamilyType.EFT_Pipe)]
| RFT_Pipe,
|
| [Description("换热器")]
| [Export(ExportFamilyType.EFT_Pipe)]
| RFT_HeatExchanger,
|
| [Description("阀门")]
| [Export(ExportFamilyType.EFT_Valve)]
| RFT_Valve,
|
| [Description("喷淋头")]
| [Export(ExportFamilyType.EFT_Shower)]
| RFT_Shower,
|
| [Description("闷头")]
| [Export(ExportFamilyType.EFT_Node)]
| RFT_Blocker,
|
| [Description("三通")]
| [Export(ExportFamilyType.EFT_Node)]
| RFT_ThreeJoint,
|
| [Description("四通")]
| [Export(ExportFamilyType.EFT_Node)]
| RFT_FourJoint,
|
| [Description("水表")]
| [Export(ExportFamilyType.EFT_Node)]
| RFT_WaterMeter,
|
| [Description("弯头")]
| [Export(ExportFamilyType.EFT_Node)]
| RFT_Elbow,
|
| [Description("消火栓")]
| [Export(ExportFamilyType.EFT_Node)]
| RFT_FireHydrant,
|
| [Description("水库")]
| [Export(ExportFamilyType.EFT_Reservoir)]
| RFT_WaterPool,
|
| [Description("水箱")]
| [Export(ExportFamilyType.EFT_WaterPool)]
| RFT_WaterBox,
|
| [Description("其他")]
| [Export(ExportFamilyType.EFT_Unknown)]
| RFT_Others
| }
|
| public enum ExportFamilyType
| {
| [Description("未知")]
| EFT_Unknown = 0,
|
| [Description("水泵")]
| EFT_Pump,
|
| [Description("管道")]
| EFT_Pipe,
|
| [Description("阀门")]
| EFT_Valve,
|
| [Description("节点")]
| EFT_Node,
|
| [Description("水库")]
| EFT_Reservoir,
|
| [Description("水池")]
| EFT_WaterPool,
|
| [Description("扩散器")]
| EFT_Shower,
|
| [Description("其他")]
| EFT_Others
| }
| }
|
|