fix: 修复利息变化记录问题
This commit is contained in:
@@ -91,8 +91,7 @@ namespace Yi.Framework.Bbs.Domain.Managers
|
|||||||
if (lastEntity is not null)
|
if (lastEntity is not null)
|
||||||
{
|
{
|
||||||
oldValue = lastEntity.Value;
|
oldValue = lastEntity.Value;
|
||||||
lastThirdPartyStandardValue = lastEntity.ComparisonValue;
|
changeRate = (thirdPartyValue - lastEntity.ComparisonValue) / (thirdPartyValue);
|
||||||
changeRate = (thirdPartyValue - lastThirdPartyStandardValue) / (thirdPartyValue);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//判断市场是否波动
|
//判断市场是否波动
|
||||||
|
|||||||
Reference in New Issue
Block a user