mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-30 06:32:49 +08:00
45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
//using FreeSql.DataAnnotations;
|
|
using FreeSql.DataAnnotations;
|
|
using System;
|
|
|
|
namespace FreeSql.Site.Entity
|
|
{
|
|
public class DocumentComment:BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 功能类型(文章、模板、示例等)
|
|
/// </summary>
|
|
public int FunctionType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 功能ID 文章、模板、示例等
|
|
/// </summary>
|
|
public int FunctionID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否匿名访问
|
|
/// </summary>
|
|
public int IsAnonymous { get; set; }
|
|
|
|
/// <summary>
|
|
/// 评论人
|
|
/// </summary>
|
|
public string Commentator { get; set; }
|
|
|
|
/// <summary>
|
|
/// 评论者IP
|
|
/// </summary>
|
|
public string CommentatorIp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回复评论编号
|
|
/// </summary>
|
|
public int ReplyID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 评论内容
|
|
/// </summary>
|
|
public string CommentContent { get; set; }
|
|
}
|
|
}
|