-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from 9uttery/feat/get-my-type-joy-api-#87
[Feature] 취향저격 소확행 조회 API 구현
- Loading branch information
Showing
6 changed files
with
108 additions
and
6 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/main/java/com/guttery/madii/domain/joy/application/dto/JoyGetRecommendRequest.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,16 @@ | ||
package com.guttery.madii.domain.joy.application.dto; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
import java.util.List; | ||
|
||
@Schema(description = "취향저격 소확행 조회 요청") | ||
public record JoyGetRecommendRequest( | ||
@Schema(description = "WHEN 태그", example = "[1,2]") | ||
List<Long> when, | ||
@Schema(description = "WHO 태그", example = "[4]") | ||
List<Long> who, | ||
@Schema(description = "WHICH 태그", example = "[8]") | ||
List<Long> which | ||
) { | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/com/guttery/madii/domain/joy/application/dto/JoyGetRecommendResponse.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,14 @@ | ||
package com.guttery.madii.domain.joy.application.dto; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
|
||
@Schema(description = "취향저격 소확행 조회 응답") | ||
public record JoyGetRecommendResponse( | ||
@Schema(description = "소확행 아이디", example = "11") | ||
Long joyId, | ||
@Schema(description = "소확행 썸네일 아이콘 번호", example = "3") | ||
Integer joyIconNum, | ||
@Schema(description = "소확행 내용", example = "낮잠자기") | ||
String contents | ||
) { | ||
} |
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