-
Notifications
You must be signed in to change notification settings - Fork 4
epic/뉴스리스트조회 #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The head ref may contain hidden characters: "feat-\uB274\uC2A4-\uAE30\uB2A5"
epic/뉴스리스트조회 #74
Changes from all commits
69c9c9e
60716d7
0258f6e
7f8b342
2cf5e7e
6136152
702b3f8
ef41b59
c5d7bf3
a6abe6b
52d371f
34941a5
f8ea316
1379060
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,3 +36,4 @@ out/ | |
|
|
||
| ### VS Code ### | ||
| .vscode/ | ||
| /src/main/generated | ||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| package org.myteam.server.global.page.request; | ||
|
|
||
| import lombok.Getter; | ||
| import lombok.NoArgsConstructor; | ||
| import lombok.Setter; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| @NoArgsConstructor | ||
| public class PageInfoRequest { | ||
|
|
||
| private int page = 1; | ||
| private int size = 12; | ||
|
|
||
| public PageInfoRequest(int page, int size) { | ||
| this.page = page; | ||
| this.size = size; | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.