From 02c14c9c57dbde72d9c771bd8b0fab1cd023047d Mon Sep 17 00:00:00 2001
From: cloudflight <cloudflight@126.com>
Date: 星期一, 13 一月 2025 09:09:22 +0800
Subject: [PATCH] 上下游纵断面分析

---
 WinFrmUI/HStation.WinFrmUI.Assets.Core/03-valve/00-viewmodel/ValveSeriesViewModel.cs |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/WinFrmUI/HStation.WinFrmUI.Assets.Core/03-valve/00-viewmodel/ValveSeriesViewModel.cs b/WinFrmUI/HStation.WinFrmUI.Assets.Core/03-valve/00-viewmodel/ValveSeriesViewModel.cs
index 07ebd03..53e33d2 100644
--- a/WinFrmUI/HStation.WinFrmUI.Assets.Core/03-valve/00-viewmodel/ValveSeriesViewModel.cs
+++ b/WinFrmUI/HStation.WinFrmUI.Assets.Core/03-valve/00-viewmodel/ValveSeriesViewModel.cs
@@ -1,6 +1,4 @@
-锘縰sing DevExpress.XtraRichEdit.Model.History;
-
-namespace HStation.WinFrmUI.Assets
+锘縩amespace HStation.WinFrmUI.Assets
 {
     public class AssetsValveSeriesViewModel
     {
@@ -12,22 +10,21 @@
         {
             this.Name = rhs.Name;
             this.ID = rhs.ID;
+            this.ParentID = rhs.ParentID;
             this.Description = rhs.Description;
-            this.Type = rhs.Type;
         }
 
         public void Reset(Vmo.AssetsValveSeriesVmo rhs)
         {
             this.Name = rhs.Name;
             this.ID = rhs.ID;
+            this.ParentID = rhs.ParentID;
             this.Description = rhs.Description;
-            this.Type = rhs.Type;
         }
 
         public string Name { get; set; }
         public long ID { get; set; }
         public long ParentID { get; set; }
         public string Description { get; set; }
-        public HStation.Assets.eAssetsValveSeriesType Type { get; set; }
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3