HuanMengAdmin/admin-server/MiaoYu.Repository.ChatAI.Admin/Entities/Apps/T_Verification_Code.cs
zpc 9183ee09c0 Revert "基础项目"
This reverts commit 5bef68f4aa.
2025-11-11 23:15:34 +08:00

53 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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