From 158292021eb0b31e494b5fdc26a31c58af0bf01b Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期四, 26 九月 2024 11:55:04 +0800 Subject: [PATCH] 匹配修改 --- WinFrmUI/HStation.WinFrmUI.Xhs.Core/04-simulation/06-simulation/01-AutoMatching/01-ViewModel/PumpMatchingViewModel.cs | 53 ++++++++++++++++++++++++++++++++--------------------- 1 files changed, 32 insertions(+), 21 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/04-simulation/06-simulation/01-AutoMatching/01-ViewModel/PumpMatchingViewModel.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/04-simulation/06-simulation/01-AutoMatching/01-ViewModel/PumpMatchingViewModel.cs index 5de2b81..b645b39 100644 --- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/04-simulation/06-simulation/01-AutoMatching/01-ViewModel/PumpMatchingViewModel.cs +++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/04-simulation/06-simulation/01-AutoMatching/01-ViewModel/PumpMatchingViewModel.cs @@ -1,19 +1,16 @@ -锘縰sing HStation.WinFrmUI.Xhs; - -namespace HStation.WinFrmUI +锘縩amespace HStation.WinFrmUI { + /// <summary> + /// 姘存车鍖归厤ViewModel + /// </summary> public class PumpMatchingViewModel { + /// <summary> + /// ID + /// </summary> [DisplayName("ID")] [Browsable(false)] public long ID { get; set; } - - /// <summary> - /// 鍚嶇О - /// </summary> - [DisplayName("鍚嶇О")] - [Browsable(true)] - public string Name { get; set; } /// <summary> /// 缂栫爜 @@ -23,11 +20,32 @@ public string Code { get; set; } /// <summary> - /// 鍨嬪彿鍚� + /// 鍚嶇О /// </summary> - [DisplayName("鍨嬪彿鍚�")] + [DisplayName("鍚嶇О")] + [Browsable(true)] + public string Name { get; set; } + + /// <summary> + /// 鍨嬪彿 + /// </summary> + [DisplayName("鍨嬪彿")] [Browsable(true)] public string ModelType { get; set; } + + /// <summary> + /// DbId + /// </summary> + [DisplayName("DbId")] + [Browsable(false)] + public string DbId { get; set; } + + /// <summary> + /// Db閿佸畾 + /// </summary> + [DisplayName("閿佸畾")] + [Browsable(true)] + public bool DbLocked { get; set; } /// <summary> /// 棰濆畾鍔熺巼 @@ -57,16 +75,9 @@ [Browsable(true)] public double? RatedN { get; set; } - /// <summary> - /// Db閿佸畾 - /// </summary> - [DisplayName("鏄惁閿佸畾")] - [Browsable(true)] - public bool DbLocked { get; set; } - [DisplayName("鍖归厤鍓岲bID")] - [Browsable(false)] - public string DbID { get; set; } + + [DisplayName("ChartDbID")] [Browsable(false)] -- Gitblit v1.9.3