-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] : 행정구 북마크 저장 api 및 전체 조회 api 구현
- Loading branch information
1 parent
0aec2cd
commit ced517b
Showing
9 changed files
with
82 additions
and
7 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
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
11 changes: 11 additions & 0 deletions
11
src/main/java/seoul/gonggong/domain/data/dto/response/AreaLikeResponse.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,11 @@ | ||
//package seoul.gonggong.domain.data.dto.response; | ||
// | ||
//import java.util.List; | ||
// | ||
//public record AreaLikeResponse( | ||
// List<AreaBoardScoreResponse> areaBoardScoreResponseList | ||
//){ | ||
// public static AreaLikeResponse of(List<AreaBoardScoreResponse> areaBoardScoreResponses) { | ||
// | ||
// } | ||
//} |
12 changes: 12 additions & 0 deletions
12
src/main/java/seoul/gonggong/domain/data/dto/response/DataBoardResponse.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,12 @@ | ||
package seoul.gonggong.domain.data.dto.response; | ||
|
||
import java.util.List; | ||
|
||
public record DataBoardResponse( | ||
String area, | ||
List<AreaBoardScoreResponse> areaBoardScoreResponseList | ||
) { | ||
public static DataBoardResponse of(String area, List<AreaBoardScoreResponse> areaBoardScoreResponseList) { | ||
return new DataBoardResponse(area, areaBoardScoreResponseList); | ||
} | ||
} |
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
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