-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] 모임에 해당하는 신청자 전체 조회 api 구현
- Loading branch information
Showing
8 changed files
with
85 additions
and
0 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
9 changes: 9 additions & 0 deletions
9
src/main/java/com/pickple/server/api/moimsubmission/domain/SubmitterInfo.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,9 @@ | ||
package com.pickple.server.api.moimsubmission.domain; | ||
|
||
public record SubmitterInfo( | ||
Long submitterId, //guest id | ||
String nickname, //신청자 닉네임 | ||
String submitterImageUrl, //신청자 프로필 이미지 | ||
String submittedDate //신청한 날짜 및 시간 | ||
) { | ||
} |
12 changes: 12 additions & 0 deletions
12
...java/com/pickple/server/api/moimsubmission/dto/response/MoimSubmissionByMoimResponse.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 com.pickple.server.api.moimsubmission.dto.response; | ||
|
||
import com.pickple.server.api.moimsubmission.domain.SubmitterInfo; | ||
import lombok.Builder; | ||
|
||
@Builder | ||
public record MoimSubmissionByMoimResponse( | ||
int maxGuest, //신청자 최대 인원 | ||
Boolean isApprovable, //승인가능여부 | ||
SubmitterInfo submitterList //신청자 리스트 | ||
) { | ||
} |
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