qin
2024-09-24 43bd8ee779a4cca7483bdf73c176b9fb8ebed5e2
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
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; }
    }
}