BeizeValveBackend/ZR.Model/Content/ArticleBrowsingLog.cs

19 lines
531 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
namespace ZR.Model.Content
{
[SugarTable("article_browsing_log", "内容浏览记录")]
[Tenant("0")]
public class ArticleBrowsingLog
{
[SugarColumn(IsPrimaryKey = true)]
public long LogId { get; set; }
public string Location { get; set; }
public string UserIP { get; set; }
public DateTime AddTime { get; set; }
/// <summary>
/// 文章ID
/// </summary>
public long ArticleId { get; set; }
public long UserId { get; set; }
}
}