From 92437d69a32c79cebf0708c147c0f3c0a24f2e23 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期一, 17 二月 2025 15:28:30 +0800 Subject: [PATCH] 损失统计报表输入能量统计bug修复 --- WinFrmUI/Yw.WinFrmUI.Hydro.Core/04-viewmodel/04-link/00-core/HydroLinkViewModel.cs | 15 +++------------ 1 files changed, 3 insertions(+), 12 deletions(-) diff --git a/WinFrmUI/Yw.WinFrmUI.Hydro.Core/04-viewmodel/04-link/00-core/HydroLinkViewModel.cs b/WinFrmUI/Yw.WinFrmUI.Hydro.Core/04-viewmodel/04-link/00-core/HydroLinkViewModel.cs index 6f04059..b001af9 100644 --- a/WinFrmUI/Yw.WinFrmUI.Hydro.Core/04-viewmodel/04-link/00-core/HydroLinkViewModel.cs +++ b/WinFrmUI/Yw.WinFrmUI.Hydro.Core/04-viewmodel/04-link/00-core/HydroLinkViewModel.cs @@ -17,7 +17,6 @@ { this.StartCode = rhs.StartCode; this.EndCode = rhs.EndCode; - this.LinkStatus = HydroLinkStatusHelper.GetStatusName(rhs.LinkStatus); } @@ -42,15 +41,6 @@ [ReadOnly(true)] [Browsable(true)] public string EndCode { get; set; } - - /// <summary> - /// 绠℃鐘舵�� - /// </summary> - [Category("鏁版嵁")] - [DisplayName("绠℃鐘舵��")] - [PropertyOrder(1003)] - [Browsable(false)] - public virtual string LinkStatus { get; set; } /// <summary> /// 娴侀噺 @@ -135,7 +125,6 @@ base.UpdateProperty(); this.StartCode = this.Vmo.StartCode; this.EndCode = this.Vmo.EndCode; - this.LinkStatus = HydroLinkStatusHelper.GetStatusName(this.Vmo.LinkStatus); } /// <summary> @@ -146,7 +135,6 @@ base.UpdateVmoProperty(); this.Vmo.StartCode = this.StartCode; this.Vmo.EndCode = this.EndCode; - this.Vmo.LinkStatus = HydroLinkStatusHelper.GetStatusCode(this.LinkStatus); } /// <summary> @@ -166,5 +154,8 @@ } + + + } } -- Gitblit v1.9.3