12345678910111213141516171819202122232425262728293031 |
- using GxPress.Common.Page;
- namespace GxPress.Request.Notice
- {
-
-
-
- public class NoticePageSearchRequest : PageParameter
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public int SearchType { get; set; }
-
-
-
- public int NoticeFolderId { get; set; }
-
-
-
-
- public string Keyword { get; set; }
- }
- }
|