From 74121a89ed9ab7d2c8c357a0669746796298c0ba Mon Sep 17 00:00:00 2001 From: yexuzhong <120511780@qq.com> Date: Wed, 5 Aug 2026 15:15:40 +0800 Subject: [PATCH] =?UTF-8?q?Gamma=5Fr=E6=9C=AA=E8=AE=A1=E7=AE=97=E5=87=BA?= =?UTF-8?q?=E6=9D=A5=EF=BC=8C=E5=8F=96=E5=80=BC=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- YLErpDAL/Modules/EodModule/GLMSGreeksHandleService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/YLErpDAL/Modules/EodModule/GLMSGreeksHandleService.cs b/YLErpDAL/Modules/EodModule/GLMSGreeksHandleService.cs index b3c6c536..8193aaf8 100644 --- a/YLErpDAL/Modules/EodModule/GLMSGreeksHandleService.cs +++ b/YLErpDAL/Modules/EodModule/GLMSGreeksHandleService.cs @@ -123,7 +123,7 @@ namespace YLErp.Modules.EodModule { p.bond_id, p.modi_dura, - p.convexity, + p.cnvxty, p.yield }).ToList(); if (datas != null && datas.Count > 0) @@ -131,7 +131,7 @@ namespace YLErp.Modules.EodModule foreach (var item in datas) { _dDic.Add(item.bond_id, item.modi_dura != null ? (double)item.modi_dura : null); - _cDic.Add(item.bond_id, item.convexity != null ? (double)item.convexity : null); + _cDic.Add(item.bond_id, item.cnvxty != null ? (double)item.cnvxty : null); _ytmDic.Add(item.bond_id, item.yield != null ? (double)item.yield : null); } }