using GxPress.Common.Page;
namespace GxPress.Request.Notice
{
///
/// 通知查询
///
public class NoticePageSearchRequest : PageParameter
{
///
/// 用户Id
///
public int UserId { get; set; }
///
/// 0 全部 1 我的 2草稿 3已删除 15 我审批的 16我发出的 17抄送我的 18 匿名信 5 通知 6 站内信
///
public int SearchType { get; set; }
///
/// 文件夹ID
///
public int NoticeFolderId { get; set; }
///
/// 搜索关键词
///
///
public string Keyword { get; set; }
}
}