feat(recommend): 인기 커뮤니티 게시글 가격을 조회한다

This commit is contained in:
2026-06-01 23:11:31 +09:00
parent bc349d5881
commit 6d399c48ab
4 changed files with 9 additions and 0 deletions

View File

@@ -778,6 +778,7 @@ class DefaultHomeRecommendationQueryRepository(
creatorCommunity.imagePath,
creatorCommunity.audioPath,
creatorCommunity.content,
creatorCommunity.price,
creatorCommunity.createdAt,
creatorCommunityLike.id.countDistinct(),
creatorCommunityComment.id.countDistinct(),
@@ -810,6 +811,7 @@ class DefaultHomeRecommendationQueryRepository(
creatorCommunity.imagePath,
creatorCommunity.audioPath,
creatorCommunity.content,
creatorCommunity.price,
creatorCommunity.createdAt
)
.fetch()

View File

@@ -154,6 +154,7 @@ data class HomePopularCommunityRecommendationRecord(
val imagePath: String?,
val audioPath: String?,
val content: String,
val price: Int,
val createdAt: LocalDateTime,
val likeCount: Long,
val commentCount: Long,