From 7079cbb505471a8d3251cac4e27c7a3841f8e656 Mon Sep 17 00:00:00 2001
From: duheng <2784771470@qq.com>
Date: 星期三, 04 十二月 2024 22:51:37 +0800
Subject: [PATCH] 修改单独匹配界面

---
 Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerCoefficient.cs |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerCoefficient.cs b/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerCoefficient.cs
index 533a9b4..36188cd 100644
--- a/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerCoefficient.cs
+++ b/Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerCoefficient.cs
@@ -17,23 +17,32 @@
         public AssetsExchangerCoefficient(AssetsExchangerCoefficient rhs)
         {
             this.ID = rhs.ID;
+            this.MainID = rhs.MainID;
             this.Name = rhs.Name;
             this.Material = rhs.Material;
             this.MinorLoss = rhs.MinorLoss;
+            this.MinorLossCurve = rhs.MinorLossCurve;
         }
 
         public void Reset(AssetsExchangerCoefficient rhs)
         {
             this.ID = rhs.ID;
+            this.MainID = rhs.MainID;
             this.Name = rhs.Name;
             this.Material = rhs.Material;
             this.MinorLoss = rhs.MinorLoss;
+            this.MinorLossCurve = rhs.MinorLossCurve;
         }
 
         /// <summary>
         /// 鍚嶇О
         /// </summary>
         public string Name { get; set; }
+
+        /// <summary>
+        /// 鍨嬪彿ID
+        /// </summary>
+        public long MainID { get; set; }
 
         /// <summary>
         /// 鏉愭枡
@@ -46,6 +55,11 @@
         public double MinorLoss { get; set; }
 
         /// <summary>
+        /// 姘村ご鎹熷け鏇茬嚎
+        /// </summary>
+        public string MinorLossCurve { get; set; }
+
+        /// <summary>
         ///
         /// </summary>
         public AssetsExchangerCoefficient Clone()

--
Gitblit v1.9.3