From f1fac249aec3a5390152fa2a9a13e8da98283c3b Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期五, 20 十二月 2024 18:19:21 +0800
Subject: [PATCH] 水池修改

---
 Vmo/HStation.Vmo.Assets.Core/15-Tank/AssetsTankMainVmo.cs |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/Vmo/HStation.Vmo.Assets.Core/15-Tank/AssetsTankMainVmo.cs b/Vmo/HStation.Vmo.Assets.Core/15-Tank/AssetsTankMainVmo.cs
index 39f134e..ce275db 100644
--- a/Vmo/HStation.Vmo.Assets.Core/15-Tank/AssetsTankMainVmo.cs
+++ b/Vmo/HStation.Vmo.Assets.Core/15-Tank/AssetsTankMainVmo.cs
@@ -23,7 +23,24 @@
             this.MaxLevel = rhs.MaxLevel;
             this.DN = rhs.DN;
             this.OverFlow = rhs.OverFlow;
-            this.KeyWord = rhs.KeyWord;
+            this.KeyWords = rhs.KeyWords;
+            this.Paras = rhs.Paras == null ? null : new(rhs.Paras);
+            this.Flags = rhs.Flags?.ToList();
+            this.TagName = rhs.TagName;
+            this.SortCode = rhs.SortCode;
+            this.Description = rhs.Description;
+        }
+
+        public AssetsTankMainVmo(AssetsTankMainVmo rhs)
+        {
+            this.ID = rhs.ID;
+            this.Name = rhs.Name;
+            this.SeriesID = rhs.SeriesID;
+            this.MinLevel = rhs.MinLevel;
+            this.MaxLevel = rhs.MaxLevel;
+            this.DN = rhs.DN;
+            this.OverFlow = rhs.OverFlow;
+            this.KeyWords = rhs.KeyWords;
             this.Paras = rhs.Paras == null ? null : new(rhs.Paras);
             this.Flags = rhs.Flags?.ToList();
             this.TagName = rhs.TagName;
@@ -74,7 +91,7 @@
         /// <summary>
         /// 璇嗗埆鍏抽敭瀛�
         ///</summary>
-        public List<string> KeyWord { get; set; }
+        public List<string> KeyWords { get; set; }
 
         /// <summary>
         /// 鍙傛暟

--
Gitblit v1.9.3