| | |
| | | namespace HStation.WinFrmUI |
| | | using HStation.Assets; |
| | | |
| | | namespace HStation.WinFrmUI |
| | | { |
| | | /// <summary> |
| | | /// 阀门匹配ViewModel |
| | |
| | | public string DbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ChartDbId |
| | | /// </summary> |
| | | [DisplayName("ChartDbId")] |
| | | [Browsable(false)] |
| | | public string ChartDbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 直径 |
| | | /// </summary> |
| | | [DisplayName("直径")] |
| | |
| | | public string ValveSetting { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 阀门开度 |
| | | /// </summary> |
| | | [DisplayName("阀门开度")] |
| | | [Browsable(true)] |
| | | public int? ValveLift { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 匹配型号 |
| | | /// </summary> |
| | | [DisplayName("匹配型号")] |
| | |
| | | [DisplayName("匹配直径")] |
| | | [Browsable(true)] |
| | | public double? MatchingDiameter { get; set; } |
| | | |
| | | /// <summary> |
| | | /// MatchingChartDbId |
| | | /// </summary> |
| | | [DisplayName("MatchingChartDbId")] |
| | | [Browsable(false)] |
| | | public string MatchingChartDbId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 匹配材质 |
| | |
| | | [DisplayName("匹配水头损失曲线")] |
| | | [Browsable(false)] |
| | | public List<CurvePointMatchingViewModel> MatchingCurveQL { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 匹配阀门开度 |
| | | /// </summary> |
| | | [DisplayName("匹配阀门开度")] |
| | | [Browsable(true)] |
| | | public int? MatchingValveLift { get; set; } |
| | | } |
| | | } |