-
Notifications
You must be signed in to change notification settings - Fork 8
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
Showing
6 changed files
with
25 additions
and
38 deletions.
There are no files selected for viewing
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
14 changes: 0 additions & 14 deletions
14
backend/src/main/java/com/festago/bookmark/dto/SchoolBookmarkTotalV1Response.java
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
backend/src/main/java/com/festago/bookmark/dto/SchoolBookmarkV1Response.java
This file was deleted.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
backend/src/main/java/com/festago/bookmark/dto/v1/SchoolBookmarkV1Response.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 com.festago.bookmark.dto.v1; | ||
|
||
import com.festago.school.dto.v1.SchoolSearchV1Response; | ||
import com.querydsl.core.annotations.QueryProjection; | ||
import java.time.LocalDateTime; | ||
|
||
public record SchoolBookmarkV1Response( | ||
SchoolSearchV1Response school, | ||
LocalDateTime bookmarkCreatedAt | ||
) { | ||
|
||
@QueryProjection | ||
public SchoolBookmarkV1Response { | ||
} | ||
} |
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
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