namespace ZR.LiveForum.Model.Liveforum { /// /// 主播排行记录 /// [SugarTable("T_Streamers")] [Tenant("liveforum")] public class T_Streamers { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int? Id { get; set; } /// /// 第三ID /// public string StreamerId { get; set; } /// /// 主播昵称 /// public string Nickname { get; set; } /// /// 主播头像 /// public string? Avatar { get; set; } /// /// 主播分类 /// public string Category { get; set; } /// /// 是否禁用 /// public bool IsEnabled { get; set; } /// /// 直播状态 /// public bool IsLive { get; set; } /// /// 在线人数 /// public int? OnlineCount { get; set; } /// /// 送花数量 /// public int? FlowerCount { get; set; } /// /// 对应的userId /// public int? UserId { get; set; } /// /// 创建时间 /// public DateTime? CreatedAt { get; set; } /// /// 最后更新时间 /// public DateTime? UpdatedAt { get; set; } } }