-
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.
Browse files
Browse the repository at this point in the history
fix: 추천 목표 반환 개수 3개, descriptions 추가
- Loading branch information
Showing
12 changed files
with
95 additions
and
21 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
3 changes: 0 additions & 3 deletions
3
src/main/java/com/groom/orbit/goal/app/dto/request/CreateGoalRequestDto.java
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
src/main/java/com/groom/orbit/goal/app/dto/response/GetRecommendGoalListResponseDto.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,5 @@ | ||
package com.groom.orbit.goal.app.dto.response; | ||
|
||
import java.util.List; | ||
|
||
public record GetRecommendGoalListResponseDto(List<GetRecommendGoalResponseDto> items) {} |
5 changes: 4 additions & 1 deletion
5
src/main/java/com/groom/orbit/goal/app/dto/response/GetRecommendGoalResponseDto.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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
package com.groom.orbit.goal.app.dto.response; | ||
|
||
public record GetRecommendGoalResponseDto(Long goalId, String title, String category) {} | ||
import java.util.List; | ||
|
||
public record GetRecommendGoalResponseDto( | ||
Long goalId, String title, String category, List<String> descriptions) {} |
5 changes: 5 additions & 0 deletions
5
src/main/java/com/groom/orbit/goal/app/dto/response/RecommendGoalListResponseDto.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,5 @@ | ||
package com.groom.orbit.goal.app.dto.response; | ||
|
||
import java.util.List; | ||
|
||
public record RecommendGoalListResponseDto(List<RecommendGoalResponseDto> items) {} |
5 changes: 5 additions & 0 deletions
5
src/main/java/com/groom/orbit/goal/app/dto/response/RecommendGoalResponseDto.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,5 @@ | ||
package com.groom.orbit.goal.app.dto.response; | ||
|
||
import java.util.List; | ||
|
||
public record RecommendGoalResponseDto(String title, String category, List<String> descriptions) {} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
- 가독성을 고려해주세요 | ||
- 내용에 따라 문단을 나누어 작성해주세요 | ||
- 문장이 길어지면 개행을 해주세요 | ||
- 문장은 존댓말을 써서 답변해주세요 | ||
|
||
# 응답 포맷 | ||
{format} |
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