//using FreeSql.DataAnnotations; using FreeSql.DataAnnotations; using System; namespace FreeSql.Site.Entity { public class DocumentComment { [Column(IsIdentity = true, IsPrimary = true)] public int ID { get; set; } /// /// 功能类型(文章、模板、示例等) /// 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; } /// /// 创建时间 /// public DateTime? CreateDt { get; set; } /// /// 创建人 /// public string CreateBy { get; set; } } }