zhangyuekai
2024-08-17 ac588abe1499785d2c4840bc79e3cdc42e08560a
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
using System.ComponentModel;
 
namespace HStation.RevitDev.RevitDataExport.Entity
{
    public class ElementModel : ModelBase
    {
        [Description("编号")]
        public string 编号 { get; set; }
 
        [Description("连接构件")]
        public string 连接构件 { get; set; }
 
        [Description("名称")]
        public string 名称 { get; set; }
 
        [Description("系统类型")]
        public string 系统类型 { get; set; }
 
 
        [Description("楼层")]
        public string 楼层 { get; set; }
 
 
        [Description("包围框")]
        public string 包围框 { get; set; }
    }
}