-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5263a4f
commit d62afcd
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
backend/src/main/java/harustudy/backend/admin/dto/AdminParticipantCodesResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package harustudy.backend.admin.dto; | ||
|
||
import harustudy.backend.participantcode.domain.ParticipantCode; | ||
import java.util.List; | ||
import org.springframework.data.domain.Page; | ||
|
||
public record AdminParticipantCodesResponse(Integer totalPage, List<AdminParticipantCodeResponse> data) { | ||
|
||
public static AdminParticipantCodesResponse from(Page<ParticipantCode> participantCodePages) { | ||
List<AdminParticipantCodeResponse> data = participantCodePages.map(AdminParticipantCodeResponse::from) | ||
.toList(); | ||
|
||
return new AdminParticipantCodesResponse(participantCodePages.getTotalPages(), data); | ||
} | ||
} |