zhangyuekai
2024-08-09 68517aa090c54df2e0999bd60af808419ca25cf7
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
using HStation.RevitDev.Model.AttributeClass;
using HStation.RevitDev.Model.ModelEnum;using System.Collections.Generic;
using System.Linq;
 
namespace HStation.Model
{
    /// <summary>
    /// 水库
    /// </summary>
    [ExportType(ExportType.EFT_Reservoir)]
    public class RevitReservoir : RevitParter
    {
        /// <summary>
        /// 总水头
        /// </summary>
        [Parameter("总水头")]
        public double Head { get; set; }
 
        /// <summary>
        /// 模式
        /// </summary>
        [Parameter("模式")]
        public string Pattern { get; set; }
 
        /// <summary>
        /// 初始水质
        /// </summary>
        [Parameter("初始水质")]
        public double Quality { get; set; }
    }
}