feat: 对接银行模块接口,即将上线功能
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Volo.Abp.Application.Dtos;
|
||||
using Yi.Framework.Bbs.Domain.Shared.Enums;
|
||||
|
||||
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Bank
|
||||
{
|
||||
public class BankCardDto:EntityDto<Guid>
|
||||
{
|
||||
|
||||
public DateTime? LastDepositTime { get; set; }
|
||||
public DateTime CreationTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户id
|
||||
/// </summary>
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前存储的钱
|
||||
/// </summary>
|
||||
public decimal StorageMoney { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 最大可存储的钱钱
|
||||
/// </summary>
|
||||
public decimal MaxStorageMoney { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 满期限时间,可空
|
||||
/// </summary>
|
||||
public DateTime? Fullterm { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 银行卡状态
|
||||
/// </summary>
|
||||
public BankCardStateEnum BankCardState { get; set; } = BankCardStateEnum.Unused;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Volo.Abp.Application.Dtos;
|
||||
|
||||
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Bank
|
||||
{
|
||||
public class InterestRecordsDto : EntityDto<Guid>
|
||||
{
|
||||
public DateTime CreationTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前汇率值
|
||||
/// </summary>
|
||||
public decimal Value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否波动期
|
||||
/// </summary>
|
||||
public bool IsFluctuate { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user