From 56f8d725e3e195a937da02aff340deeb32e6e5ac Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期五, 13 十二月 2024 14:36:20 +0800 Subject: [PATCH] new bug修复 --- Service/HStation.Service.Assets.Core/02-model/11-Exchanger/AssetsExchangerCoefficient.cs | 19 ++++++++++++------- 1 files changed, 12 insertions(+), 7 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 82b9711..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 @@ -1,6 +1,4 @@ -锘縰sing HStation.Assets; -using System.Runtime.CompilerServices; -using Yw.Model; +锘縰sing Yw.Model; namespace HStation.Model { @@ -19,19 +17,21 @@ public AssetsExchangerCoefficient(AssetsExchangerCoefficient rhs) { this.ID = rhs.ID; + this.MainID = rhs.MainID; this.Name = rhs.Name; - this.Caliber = rhs.Caliber; 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.Caliber = rhs.Caliber; this.Material = rhs.Material; this.MinorLoss = rhs.MinorLoss; + this.MinorLossCurve = rhs.MinorLossCurve; } /// <summary> @@ -40,9 +40,9 @@ public string Name { get; set; } /// <summary> - /// 鍙e緞 + /// 鍨嬪彿ID /// </summary> - public double? Caliber { get; set; } + public long MainID { get; set; } /// <summary> /// 鏉愭枡 @@ -55,6 +55,11 @@ public double MinorLoss { get; set; } /// <summary> + /// 姘村ご鎹熷け鏇茬嚎 + /// </summary> + public string MinorLossCurve { get; set; } + + /// <summary> /// /// </summary> public AssetsExchangerCoefficient Clone() -- Gitblit v1.9.3