namespace MiaoYu.Repository.ChatAI.Admin.Entities.Apps;
///
/// 验证码表
///
[EntityDescription(FieldIgnored = true)]
public class T_Verification_Code : DefaultEntityV4
{
///
/// 手机号或者邮箱 => 备注: 手机号或者邮箱
///
public string? Key { get; set; }
///
/// 验证码 => 备注: 验证码
///
public string? Code { get; set; }
///
/// 创建天 => 备注: 创建天
///
public Int32 CreateDay { get; set; }
///
/// 过期时间 => 备注: 过期时间
///
public DateTime ExpireAt { get; set; }
///
/// 创建时间 => 备注: 创建时间
///
public DateTime CreateAt { get; set; }
///
/// 备注 => 备注: 备注
///
public string? Remarks { get; set; }
///
/// 0手机,1邮箱 => 备注: 0手机,1邮箱
///
public Int32 VerificationType { get; set; }
}