From 393c5a292f0d76545734928ffda9e8aed4223afc Mon Sep 17 00:00:00 2001
From: lixiaojun <1287241240@qq.com>
Date: 星期一, 28 十月 2024 13:26:33 +0800
Subject: [PATCH] 优化流量计、压力表小数位数

---
 WinFrmUI/Yw.WinFrmUI.Hydro.Core/03-property/02-node/03-junction/00-core/HydroJunctionPropertyViewModel.cs |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/WinFrmUI/Yw.WinFrmUI.Hydro.Core/03-property/02-node/03-junction/00-core/HydroJunctionPropertyViewModel.cs b/WinFrmUI/Yw.WinFrmUI.Hydro.Core/03-property/02-node/03-junction/00-core/HydroJunctionPropertyViewModel.cs
index 0f10dec..f010796 100644
--- a/WinFrmUI/Yw.WinFrmUI.Hydro.Core/03-property/02-node/03-junction/00-core/HydroJunctionPropertyViewModel.cs
+++ b/WinFrmUI/Yw.WinFrmUI.Hydro.Core/03-property/02-node/03-junction/00-core/HydroJunctionPropertyViewModel.cs
@@ -36,36 +36,36 @@
         [PropertyOrder(101)]
         [DisplayUnit("m")]
         [Browsable(true)]
-        public double Elev { get; set; }
+        public virtual double Elev { get; set; }
 
         /// <summary>
         /// 鎹熷け绯绘暟
         /// </summary>
         [Category("鏁版嵁")]
         [DisplayName("鎹熷け绯绘暟")]
-        [PropertyOrder(33)]
+        [PropertyOrder(102)]
         [Browsable(true)]
-        public double? MinorLoss { get; set; }
+        public virtual double? MinorLoss { get; set; }
 
         /// <summary>
         /// 闇�姘撮噺
         /// </summary>
         [Category("鏁版嵁")]
         [DisplayName("闇�姘撮噺")]
-        [PropertyOrder(102)]
+        [PropertyOrder(103)]
         [DisplayUnit("m鲁/h")]
-        [Browsable(true)]
-        public double? Demand { get; set; }
+        [Browsable(false)]
+        public virtual double? Demand { get; set; }
 
         /// <summary>
         /// 闇�姘存ā寮�
         /// </summary>
         [Category("鏁版嵁")]
         [DisplayName("闇�姘存ā寮�")]
-        [PropertyOrder(103)]
+        [PropertyOrder(104)]
         [IsHydroPatternPro(HydroPattern.Demand)]
-        [Browsable(true)]
-        public string DemandPattern { get; set; }
+        [Browsable(false)]
+        public virtual string DemandPattern { get; set; }
 
         /// <summary>
         /// 鏇存柊灞炴��

--
Gitblit v1.9.3