feat(home-live): 라이브 추천 조회 정보를 확장한다

This commit is contained in:
2026-06-27 00:05:49 +09:00
parent 8ae48d7e67
commit 38595ee88a
4 changed files with 97 additions and 6 deletions

View File

@@ -62,7 +62,10 @@ class DefaultHomeRecommendationQueryRepository(
HomeLiveRecommendationRecord::class.java,
liveRoom.id,
member.nickname,
member.profileImage
member.profileImage,
liveRoom.title,
liveRoom.price,
liveRoom.beginDateTime
)
)
.from(liveRoom)

View File

@@ -80,7 +80,10 @@ interface HomeRecommendationQueryPort {
data class HomeLiveRecommendationRecord(
val liveRoomId: Long,
val creatorNickname: String,
val creatorProfileImage: String?
val creatorProfileImage: String?,
val title: String,
val price: Int,
val beginDateTime: LocalDateTime
)
data class HomeBannerRecommendationRecord(