This commit is contained in:
qianhao.xu
2024-12-03 09:25:16 +08:00
parent 96e44cfc4e
commit 586d2e60dc
661 changed files with 996 additions and 28248 deletions

View File

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