新增文档分类列表树

This commit is contained in:
hogan
2019-01-25 16:49:09 +08:00
parent a9afd0d23d
commit 96c2a66131
25 changed files with 875 additions and 515 deletions

View File

@ -4,11 +4,8 @@ using System;
namespace FreeSql.Site.Entity
{
public class DocumentComment
public class DocumentComment:BaseEntity
{
[Column(IsIdentity = true, IsPrimary = true)]
public int ID { get; set; }
/// <summary>
/// 功能类型(文章、模板、示例等)
/// </summary>
@ -43,16 +40,5 @@ namespace FreeSql.Site.Entity
/// 评论内容
/// </summary>
public string CommentContent { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateDt { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreateBy { get; set; }
}
}