初始刷

This commit is contained in:
2024-11-28 13:36:05 +08:00
parent b9b7c9090e
commit 88ebd4c300
753 changed files with 62888 additions and 64 deletions

View File

@@ -0,0 +1,18 @@
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; }
}
}