namespace ZR.LiveForum.Model.Liveforum { /// /// 认证申请记录 /// [SugarTable("T_UserCertifications")] [Tenant("liveforum")] public class T_UserCertifications { /// /// Id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 用户id /// public long UserId { get; set; } /// /// 认证类型 /// public string CertificationType { get; set; } /// /// 用户的抖音账号 /// public string? DouyinId { get; set; } /// /// 用户联系方式 /// public string? ContactInfo { get; set; } /// /// 认证视频URL地址 /// public string? VideoUrl { get; set; } /// /// 粉丝牌等级 /// public int? FanLevel { get; set; } /// /// 审核状态 审核状态:0-待审核,1-通过,2-拒绝 /// public int? Status { get; set; } /// /// 审核拒绝原因 /// public string? RejectReason { get; set; } /// /// 审核人用户ID /// public long? ReviewerId { get; set; } /// /// 审核完成时间 /// public DateTime? ReviewedAt { get; set; } /// /// 认证申请创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 记录更新时间 /// public DateTime? UpdatedAt { get; set; } } }