| | |
| | | namespace HStation.WinFrmUI |
| | | using HStation.Assets; |
| | | using HStation.Revit; |
| | | |
| | | namespace HStation.WinFrmUI |
| | | { |
| | | /// <summary> |
| | | /// 阀门匹配ViewModel |
| | |
| | | public string DbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// CurveDbId |
| | | /// </summary> |
| | | [DisplayName("ChartDbId")] |
| | | [Browsable(false)] |
| | | public string CurveDbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 直径 |
| | | /// </summary> |
| | | [DisplayName("直径")] |
| | |
| | | /// </summary> |
| | | [DisplayName("阀门类型")] |
| | | [Browsable(true)] |
| | | public string ValveType { get; set; } |
| | | public eValveType ValveType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 阀门设置 |
| | |
| | | public double? MatchingDiameter { get; set; } |
| | | |
| | | /// <summary> |
| | | /// MatchingCurveDbId |
| | | /// </summary> |
| | | [DisplayName("MatchingCurveDbId")] |
| | | [Browsable(false)] |
| | | public string MatchingCurveDbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 匹配材质 |
| | | /// </summary> |
| | | [DisplayName("匹配材质")] |
| | |
| | | /// </summary> |
| | | [DisplayName("匹配阀门类型")] |
| | | [Browsable(true)] |
| | | public string MatchingValveType { get; set; } |
| | | public eValveType MatchingValveType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 匹配阀门设置 |
| | |
| | | [DisplayName("匹配水头损失曲线")] |
| | | [Browsable(false)] |
| | | public List<CurvePointMatchingViewModel> MatchingCurveQL { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 匹配开度损失曲线 |
| | | /// </summary> |
| | | [DisplayName("匹配开度损失曲线")] |
| | | [Browsable(false)] |
| | | public List<CurvePointMatchingViewModel> MatchingCurveOL { get; set; } |
| | | } |
| | | } |