| | |
| | | namespace HStation.WinFrmUI |
| | | using HStation.WinFrmUI.Xhs; |
| | | |
| | | namespace HStation.WinFrmUI |
| | | { |
| | | public class PumpMatchingViewModel |
| | | { |
| | |
| | | [DisplayName("名称")] |
| | | [Browsable(true)] |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 编码 |
| | | /// </summary> |
| | | [DisplayName("编码")] |
| | | [Browsable(true)] |
| | | public string Code { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 型号名 |
| | |
| | | [Browsable(true)] |
| | | public bool DbLocked { get; set; } |
| | | |
| | | [DisplayName("DbID")] |
| | | [DisplayName("匹配前DbID")] |
| | | [Browsable(false)] |
| | | public long DbID { get; set; } |
| | | public string DbID { get; set; } |
| | | |
| | | [DisplayName("ChartDbID")] |
| | | [Browsable(false)] |
| | | public long ChartDbID { get; set; } |
| | | public string ChartDbID { get; set; } |
| | | |
| | | [DisplayName("匹配后DbID")] |
| | | [Browsable(false)] |
| | | public string MatchingDbID { get; set; } |
| | | |
| | | [DisplayName("匹配后ChartDbID")] |
| | | [Browsable(false)] |
| | | public long? MatchingChartDbID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 修改后额定功率 |
| | | /// </summary> |
| | | [DisplayName("修改后额定功率")] |
| | | [Browsable(true)] |
| | | public double? MatchingRatedP { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 修改后额定流量 |
| | | /// </summary> |
| | | [DisplayName("修改后额定流量")] |
| | | [Browsable(true)] |
| | | public double? MatchingRatedQ { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 修改后额定扬程 |
| | | /// </summary> |
| | | [DisplayName("修改后额定扬程")] |
| | | [Browsable(true)] |
| | | public double? MatchingRatedH { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 修改后额定转速 |
| | | /// </summary> |
| | | [DisplayName("修改后额定转速")] |
| | | [Browsable(true)] |
| | | public double? MatchingRatedN { get; set; } |
| | | } |
| | | } |