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
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace HStation.RevitDev.RevitDataExport.Enum
| {
| public enum YWFamilyType
| {
| [Description("未知")]
| Unknown = 0,
|
| [Description("水泵")]
| YWFT_Pump,
|
| [Description("管道")]
| YWFT_Pipe,
|
| [Description("阀门")]
| YWFT_Valve,
|
| [Description("换热器")]
| YWFT_Heat_Exchanger,
|
| [Description("闷头")]
| YWFT_Blocker,
|
| [Description("喷淋头")]
| YWFT_Shower,
|
| [Description("三通")]
| YWFT_Three_Joint,
|
| [Description("四通")]
| YWFT_Four_Joint,
|
| [Description("水表")]
| YWFT_Water_Meter,
|
| [Description("水库")]
| YWFT_Water_Pool,
|
| [Description("水箱")]
| YWFT_Water_Box,
|
| [Description("弯头")]
| YWFT_Elbow,
|
| [Description("消火栓")]
| YWFT_Fire_Hydrant,
|
| [Description("其他")]
| YWFT_Others
| }
| }
|
|