using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Rbac.Domain.Shared.Dtos
{
///
/// 当前银行记录
///
public class BankInterestRecordDto
{
public DateTime CreationTime { get; set; }
///
/// 第三方的比较值
///
public decimal ComparisonValue { get; set; }
///
/// 当前汇率值
///
public decimal Value { get; set; }
///
/// 判断时间是否过期
///
///
public bool IsExpire()
{
return (DateTime.Now-CreationTime).TotalHours >= 1;
}
}
}