Skip to content

Commit

Permalink
fix: PagedAgendaDetailInfo의 isFirst, isLast 필드 Boolean 타입으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bflykky committed Aug 20, 2024
1 parent fbe63ab commit 537fe9d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static class PagedAgendaDetailInfo {
private List<AgendaDetailInfo> agendaDetailInfoList;
private int totalPages;
private long totalElements; // 해당 조건에 부합하는 요소의 총 개수
private boolean isFirst; // 첫 페이지 여부
private boolean isLast; // 마지막 페이지 여부
private Boolean isFirst; // 첫 페이지 여부
private Boolean isLast; // 마지막 페이지 여부
}
}

0 comments on commit 537fe9d

Please sign in to comment.