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 { /// /// 满期限时间,可空 /// public DateTime? FulltermTime { get; set; } public DateTime? LastDepositTime { get; set; } public DateTime CreationTime { get; set; } /// /// 用户id /// public Guid UserId { get; set; } /// /// 当前存储的钱 /// public decimal StorageMoney { get; set; } /// /// 最大可存储的钱钱 /// public decimal MaxStorageMoney { get; set; } /// /// 银行卡状态 /// public BankCardStateEnum BankCardState { get; set; } = BankCardStateEnum.Unused; } }