精简实体修改
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-22 18:10:29 +08:00
parent f0943ca9a4
commit 4319982be9
159 changed files with 520 additions and 2225 deletions
@@ -5,10 +5,9 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace IRaCIS.Core.Domain.Models
{
[Table("VerificationCode")]
public class VerificationCode:Entity, IAuditAdd
public class VerificationCode:BaseAuditAddEntity
{
//public Guid Id { get; set; }
public Guid UserId { get; set; } = Guid.Empty;
//验证码
@@ -20,15 +19,11 @@ namespace IRaCIS.Core.Domain.Models
public bool HasSend { get; set; }
//发送的邮箱或者手机
public string EmailOrPhone { get; set; }
//过期时间
public DateTime ExpirationTime { get; set; }
public Guid CreateUserId { get; set; }
public DateTime CreateTime { get; set; }
}
}