namespace GxPress.Request.Comment
{
///
/// 文章评论
///
public class CommentInRequest
{
///
/// 文章ID
///
public int ArticleId { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 父级ID
///
public int Pid { get; set; }
///
/// 状态 文章100,话题2,收藏3,笔记4,通知5,站内信6,小组7,收藏文件夹12,笔记文件夹13,工作流审批14,文件300,图片301,会议纪要8,会议详情500,财务报表601,人事报表602,出版报表603,书籍20,课程30,音频40,期刊50,视频60,名栏90,公众号110,刊期120
///
///
public int TypeValue { get; set; }
///
/// 评分
///
///
public decimal Score { get; set; }
///
/// HTML内容
///
public string HtmlContent { get; set; }
///
/// json内容
///
public string JsonContent { get; set; }
}
}