-
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.
[FEATURE] 특정 데일리 질문에 대한 친구들의 답변 몰아보기 API 작성 (#118)
* feat : 특정 데일리 질문에 대한 친구들의 답변 몰아보기 API 작성 * edit : 무한스크롤 삭제, list 조회로 변경 #112
- Loading branch information
1 parent
5716f0b
commit 22ffb5c
Showing
8 changed files
with
143 additions
and
11 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
16 changes: 16 additions & 0 deletions
16
Api/src/main/java/tify/server/api/answer/model/response/NeighborAnswerInfoDTO.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 tify.server.api.answer.model.response; | ||
|
||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
import tify.server.api.answer.model.vo.AnswerInfoVo; | ||
import tify.server.domain.domains.user.dto.model.RetrieveNeighborDTO; | ||
|
||
@Getter | ||
@Builder | ||
public class NeighborAnswerInfoDTO { | ||
|
||
private final RetrieveNeighborDTO neighborInfo; | ||
|
||
private final AnswerInfoVo answerInfo; | ||
} |
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
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