//using FreeSql.DataAnnotations;
using FreeSql.DataAnnotations;
using System;
namespace FreeSql.Site.Entity
{
public class DocumentComment:BaseEntity
{
///
/// 功能类型(文章、模板、示例等)
///
public int FunctionType { get; set; }
///
/// 功能ID 文章、模板、示例等
///
public int FunctionID { get; set; }
///
/// 是否匿名访问
///
public int IsAnonymous { get; set; }
///
/// 评论人
///
public string Commentator { get; set; }
///
/// 评论者IP
///
public string CommentatorIp { get; set; }
///
/// 回复评论编号
///
public int ReplyID { get; set; }
///
/// 评论内容
///
public string CommentContent { get; set; }
}
}