初始刷

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,48 @@
namespace ZR.Model.Content
{
/// <summary>
/// 话题
/// </summary>
[SugarTable("article_topic", TableDescription = "文章话题")]
[Tenant(0)]
public class ArticleTopic
{
/// <summary>
/// 话题ID
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long TopicId { get; set; }
/// <summary>
/// 话题名
/// </summary>
public string TopicName { get; set; }
/// <summary>
/// 话题描述
/// </summary>
public string TopicDescription { get; set; }
/// <summary>
/// 参与/发起次数
/// </summary>
public int JoinNum { get; set; }
/// <summary>
/// 浏览次数
/// </summary>
public int ViewNum { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? AddTime { get; set; }
/// <summary>
/// 话题分类
/// </summary>
public int? TopicType { get; set; }
}
}