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