zhangyuekai
2024-08-13 839500b0fae58b5ff142508b1b32b1f107df9ea1
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
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.Id = baseModel.Id;
            base.LinkIds = baseModel.LinkIds;
            base.Name = baseModel.Name;
            base.PipeSystemName = baseModel.PipeSystemName;
            base.Floor = baseModel.Floor;
            base.Box = baseModel.Box;
        }
 
        [Description("编号")]
        public new string Id { get; set; }
 
        [Description("连接构件")]
        public new string LinkIds { get; set; }
 
        [Description("公称直径")]
        public string NominalDiameter { get; set; }
 
 
        [Description("公称压力")]
        public string NominalPressure { get; set; }
    }
}