ZrAdminNetCore/ZR.LiveForum.Model/Liveforum/T_UserCertifications.cs
2025-11-16 23:11:35 +08:00

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