using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.Notice { /// /// 当前通知阅读情况查询 /// public class NoticeReadListRequest { /// /// 0 全部 1 阅读 2 未读 /// public int ReadType { get; set; } /// /// 通知ID /// public int NoticeId { get; set; } /// /// 名字搜索 /// /// public string Key { 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 SourceType { get; set; } } }