feat: 完善实体追踪审计日志

This commit is contained in:
陈淳
2024-01-27 17:42:09 +08:00
parent b6d35a88db
commit 7969a75a19
15 changed files with 185 additions and 12 deletions

View File

@@ -49,6 +49,22 @@ namespace Yi.Framework.Bbs.Domain.Entities
/// 经验
/// </summary>
public long Experience { get; set; } = 0;
/// <summary>
/// 发表主题数
/// </summary>
public int DiscussNumber { get; set; }
/// <summary>
/// 发表主题数
/// </summary>
public int CommentNumber { get; set; }
/// <summary>
/// 被点赞数
/// </summary>
public int AgreeNumber { get; set; }
}
}