From 24fb6d95e0416ac3c00a93b87359567e45568a89 Mon Sep 17 00:00:00 2001
From: Shuxia Ning <NingShuxia0927@outlook.com>
Date: 星期二, 17 十二月 2024 10:07:13 +0800
Subject: [PATCH] 曲线关联 bug更新

---
 Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerMain.cs |   27 ++++++++++++++++++++++++---
 1 files changed, 24 insertions(+), 3 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerMain.cs b/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerMain.cs
index b28bc36..88ef968 100644
--- a/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerMain.cs
+++ b/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerMain.cs
@@ -6,7 +6,7 @@
     /// 涓氬姟绔�
     /// </summary>
     [SysType("assets_exchanger_main")]
-    public class AssetsExchangerMain : BaseModel, ISorter, System.ICloneable
+    public class AssetsExchangerMain : BaseModel, ISorter, IFlags, IParas, ITagName, System.ICloneable
     {
         /// <summary>
         ///
@@ -22,6 +22,9 @@
             this.Material = rhs.Material;
             this.MinorLoss = rhs.MinorLoss;
             this.KeyWord = rhs.KeyWord;
+            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;
         }
@@ -34,6 +37,9 @@
             this.Material = rhs.Material;
             this.MinorLoss = rhs.MinorLoss;
             this.KeyWord = rhs.KeyWord;
+            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;
         }
@@ -64,6 +70,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; }
@@ -76,9 +97,9 @@
         /// <summary>
         ///
         /// </summary>
-        public AssetsPumpGroupAndMainMap Clone()
+        public AssetsPumpGroupAndMainMapping Clone()
         {
-            return (AssetsPumpGroupAndMainMap)this.MemberwiseClone();
+            return (AssetsPumpGroupAndMainMapping)this.MemberwiseClone();
         }
 
         object ICloneable.Clone()

--
Gitblit v1.9.3