From 13e69c09c5ac97e0294d64617dfb934e34bb4264 Mon Sep 17 00:00:00 2001
From: Shuxia Ning <NingShuxia0927@outlook.com>
Date: 星期一, 02 十二月 2024 17:11:13 +0800
Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/HStation/XHS.V1.0

---
 Service/HStation.Service.Assets.Core/02-model/08-Valve/AssetsValveMain.cs |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/02-model/08-Valve/AssetsValveMain.cs b/Service/HStation.Service.Assets.Core/02-model/08-Valve/AssetsValveMain.cs
index 6946410..6a23776 100644
--- a/Service/HStation.Service.Assets.Core/02-model/08-Valve/AssetsValveMain.cs
+++ b/Service/HStation.Service.Assets.Core/02-model/08-Valve/AssetsValveMain.cs
@@ -7,7 +7,7 @@
     /// 涓氬姟绔�
     /// </summary>
     [SysType("assets_valve_main")]
-    public class AssetsValveMain : BaseModel, ISorter, System.ICloneable
+    public class AssetsValveMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable
     {
         /// <summary>
         ///
@@ -27,6 +27,9 @@
             this.KeyWord = rhs.KeyWord;
             this.MinorLoss = rhs.MinorLoss;
             this.ValveSetting = rhs.ValveSetting;
+            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
+            this.Flags = rhs.Flags?.ToList();
+            this.TagName = rhs.TagName;
             this.SortCode = rhs.SortCode;
             this.Description = rhs.Description;
         }
@@ -41,6 +44,9 @@
             this.KeyWord = rhs.KeyWord;
             this.MinorLoss = rhs.MinorLoss;
             this.ValveSetting = rhs.ValveSetting;
+            this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras);
+            this.Flags = rhs.Flags?.ToList();
+            this.TagName = rhs.TagName;
             this.SortCode = rhs.SortCode;
             this.Description = rhs.Description;
         }
@@ -86,6 +92,21 @@
         public List<string> KeyWord { get; set; }
 
         /// <summary>
+        /// 鍙傛暟
+        /// </summary>
+        public Dictionary<string, string> Paras { get; set; }
+
+        /// <summary>
+        /// 鏍囩
+        /// </summary>
+        public List<string> Flags { get; set; }
+
+        /// <summary>
+        /// 鏍囧織
+        /// </summary>
+        public string TagName { get; set; }
+
+        /// <summary>
         /// 鎺掑簭鐮�
         /// </summary>
         public int SortCode { get; set; }

--
Gitblit v1.9.3