Skip to content

Commit

Permalink
RAC-478 fix : 페이지당 10개로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ywj9811 committed Dec 23, 2024
1 parent e622c87 commit 19170a1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@RequiredArgsConstructor
public class AdminPaymentService {
private final AdminPaymentRepository adminPaymentRepository;
private static final int PAYMENT_PAGE_SIZE = 20;
private static final int PAYMENT_PAGE_SIZE = 10;

public Page<PaymentWithMentoringQuery> allPayments(Integer page) {
if (page == null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
@Slf4j
public class AdminSalaryService {
private final AdminSalaryRepository adminSalaryRepository;
private static final int SALARY_PAGE_SIZE = 20;
private static final int SALARY_PAGE_SIZE = 10;
public Page<Salary> findAllDoneSalary(Integer page) {
if (page == null)
page = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@RequiredArgsConstructor
public class AdminSeniorService {
private final AdminSeniorRepository adminSeniorRepository;
private static final int SENIOR_PAGE_SIZE = 20;
private static final int SENIOR_PAGE_SIZE = 10;

public Page<Salary> allSeniors(Integer page) {
if (page == null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@RequiredArgsConstructor
public class AdminUserService {
private final AdminUserRepository adminUserRepository;
private static final int JUNIOR_PAGE_SIZE = 20;
private static final int JUNIOR_PAGE_SIZE = 10;
public Page<MemberRole> allJunior(Integer page) {
if (page == null)
page = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@RequiredArgsConstructor
public class AdminWishService {
private final AdminWishRepository adminWishRepository;
private static final int WISH_PAGE_SIZE = 20;
private static final int WISH_PAGE_SIZE = 10;
public Page<Wish> findAllWaiting(Integer page) {
if (page == null)
page = 1;
Expand Down

0 comments on commit 19170a1

Please sign in to comment.