namespace GxPress.Result.App.Collection { /// /// 收藏分页结果 /// public class CollectionListPageResult : Middle.Middle { /// /// 自增ID /// public int Id { get; set; } /// /// 收藏自增ID /// public int CollectionId { get; set; } /// /// 收藏类型 1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情 14工作流审批 300 文件 /// public int CollectionType { get; set; } /// /// 收藏 笔记来源用户ID /// /// public int SourceUserId { get; set; } /// /// 数据类型ID /// public int CollectionDataId { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// /// public CollectionContentJsonData Data { get; set; } /// /// 文件数量 /// public int FileCount { get; set; } } /// /// 收藏分页结果 /// public class CollectionResult { /// /// 自增ID /// public int Id { get; set; } /// /// 收藏类型 1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情 /// public int CollectionType { get; set; } /// /// 数据类型ID /// public int CollectionDataId { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// /// public CollectionContentJsonData Data { get; set; } /// /// 访问数量 /// public int ReadCount { get; set; } } }