parent
8a03249759
commit
4ff5e9e163
|
@ -797,10 +797,12 @@ class AudioContentQueryRepositoryImpl(
|
||||||
audioContent.title,
|
audioContent.title,
|
||||||
audioContentTheme.theme,
|
audioContentTheme.theme,
|
||||||
audioContent.coverImage.prepend("/").prepend(imageHost),
|
audioContent.coverImage.prepend("/").prepend(imageHost),
|
||||||
audioContent.duration
|
audioContent.duration,
|
||||||
|
member.nickname
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
.from(audioContent)
|
.from(audioContent)
|
||||||
|
.innerJoin(audioContent.member, member)
|
||||||
.innerJoin(audioContent.theme, audioContentTheme)
|
.innerJoin(audioContent.theme, audioContentTheme)
|
||||||
.where(audioContent.id.`in`(contentIdList))
|
.where(audioContent.id.`in`(contentIdList))
|
||||||
.fetch()
|
.fetch()
|
||||||
|
|
|
@ -29,5 +29,6 @@ data class AudioContentPlaylistContent @QueryProjection constructor(
|
||||||
val title: String,
|
val title: String,
|
||||||
val category: String,
|
val category: String,
|
||||||
val coverUrl: String,
|
val coverUrl: String,
|
||||||
val duration: String
|
val duration: String,
|
||||||
|
val creatorNickname: String
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue