ZrAdminNetCore/ZR.LiveForum.Model/Liveforum/T_Follows.cs
2025-11-16 18:50:32 +08:00

33 lines
720 B
C#

namespace ZR.LiveForum.Model.Liveforum
{
/// <summary>
/// 关注记录
/// </summary>
[SugarTable("T_Follows")]
[Tenant("liveforum")]
public class T_Follows
{
/// <summary>
/// id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
/// <summary>
/// 用户Id
/// </summary>
public long FollowerId { get; set; }
/// <summary>
/// 被关注者用户ID
/// </summary>
public long FollowedUserId { get; set; }
/// <summary>
/// 关注时间
/// </summary>
public DateTime? CreatedAt { get; set; }
}
}