fix: 修复银行汇率问题

This commit is contained in:
chenchun
2024-06-26 12:46:39 +08:00
parent 5b109e91d1
commit b30662d2b4
4 changed files with 39 additions and 34 deletions

View File

@@ -8,6 +8,16 @@ namespace Yi.Framework.Bbs.Domain.Managers.BankValue
{
public interface IBankValueProvider
{
public Task<decimal> GetValueAsync();
/// <summary>
/// 标准值
/// </summary>
decimal StandardValue { get; }
/// <summary>
/// 获取第三方值
/// </summary>
/// <returns></returns>
Task<decimal> GetValueAsync();
}
}