using System; using System.Collections.Generic; using System.Text; using GxPress.Result.AddressBookGroupUser; namespace GxPress.Result.Comment { /// /// 文章评论显示 /// public class CommentPageResult { /// /// 姓名 /// public string Name { get; set; } /// /// 头像 /// public string AvatarUrl { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// HTML内容 /// public string HtmlContent { get; set; } /// /// json内容 /// public string JsonContent { get; set; } /// /// 时间 /// public DateTime? CreatedTime { get; set; } /// /// 楼层 /// public string FloorCount { get; set; } /// /// 点赞数量 /// public int LaudCount { get; set; } /// /// 评论ID /// public int Id { get; set; } /// /// 文章ID /// public int ArticleId { get; set; } /// /// 被回复数据 /// public List CommentReplyResults { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 当前用户是否点赞 /// public bool IsLaud { get; set; } /// /// 评分 /// /// public decimal Score { get; set; } } /// /// 被回复评论 /// public class CommentReplyResult { /// /// 姓名 /// public string Name { get; set; } /// /// 回复姓名 /// public string ReplyName { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// HTML内容 /// public string HtmlContent { get; set; } /// /// json内容 /// public string JsonContent { get; set; } /// /// 时间 /// public DateTime? CreatedTime { get; set; } /// /// ID /// public int Id { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 回复人ID /// /// public int ReplyUserId { get; set; } /// /// 是否回复 /// public bool IsUnderstand { get; set; } } /// /// 被回复评论 /// public class CommentResult { /// /// ID /// /// public int Id { get; set; } /// /// 数据ID /// public int ArticleId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// HTML内容 /// public string HtmlContent { get; set; } /// /// json内容 /// public string JsonContent { 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 string TypeValueString { get; set; } /// /// 标题 /// /// public string Title { get; set; } /// /// 评论时间 /// /// public DateTime? CreatedDate { get; set; } } }