using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Common.Page;
using GxPress.EnumConst;
namespace GxPress.Request.Notice
{
///
/// 通知查询
///
public class NoticePageSearchRequest:PageParameter
{
///
/// 用户Id
///
public int UserId { get; set; }
///
/// 0 全部 1 我的 2草稿 3已删除
///
public int SearchType { get; set; }
///
/// 文件夹ID
///
public int NoticeFolderId { get; set; }
///
/// 搜索关键词
///
///
public string Keyword { get; set; }
}
}