오디션 지원 리스트

- 지원자 memberId 추가
This commit is contained in:
Klaus 2025-01-03 23:40:26 +09:00
parent 1ddd40948e
commit 354fbf7e29
2 changed files with 2 additions and 0 deletions

View File

@ -74,6 +74,7 @@ class AuditionApplicantQueryRepositoryImpl(
.select( .select(
QGetAuditionRoleApplicantItem( QGetAuditionRoleApplicantItem(
auditionApplicant.id, auditionApplicant.id,
member.id,
member.nickname, member.nickname,
member.profileImage.prepend("/").prepend(cloudFrontHost), member.profileImage.prepend("/").prepend(cloudFrontHost),
auditionApplicant.voicePath.prepend("/").prepend(cloudFrontHost), auditionApplicant.voicePath.prepend("/").prepend(cloudFrontHost),

View File

@ -9,6 +9,7 @@ data class GetAuditionApplicantListResponse(
data class GetAuditionRoleApplicantItem @QueryProjection constructor( data class GetAuditionRoleApplicantItem @QueryProjection constructor(
val applicantId: Long, val applicantId: Long,
val memberId: Long,
val nickname: String, val nickname: String,
val profileImageUrl: String, val profileImageUrl: String,
val voiceUrl: String, val voiceUrl: String,