using System;
using System.Collections.Generic;
namespace GxPress.Result.App.Note
{
///
/// 分页显示笔记
///
public class NotePageListRequest : Middle.Middle
{
///
/// Id
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 数据结构
///
public List Data { get; set; }
///
/// 文件数量
///
public int FileCount { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 用户头像
///
public string AvatarUrl { get; set; }
///
/// 阅读量
///
public int ReadCount { get; set; }
///
/// 创建时间
///
public DateTime? CreatedDate { get; set; }
///
/// 是否点赞
///
public bool IsPraise { get; set; }
///
/// 点赞数量
///
public int PraiseCount { get; set; }
///
/// 部门ID
///
public string DepartmentName { get; set; }
///
/// 评论数量
///
public int CommentCount { get; set; }
///
/// 昵称
///
public string NickName { get; set; }
///
/// 收藏数量
///
public int CollectCount { get; set; }
///
/// 转发数量
///
public int RetransmissionCount { get; set; }
///
/// 是否转发
///
///
public bool IsRetransmission { get; set; }
///
/// 是否收藏
///
///
public bool IsCollect { get; set; }
///
/// 数据类型 1 没有 2 图 3 文件
///
public int DataType { get; set; }
}
}