[#46] 더미 데이터 생성 및 1개의 슬로우쿼리 개선 #47

Merged
pricelees merged 15 commits from feat/#46 into main 2025-09-27 06:38:44 +00:00
Showing only changes of commit c847ae2fe6 - Show all commits

View File

@ -0,0 +1,15 @@
package roomescape.theme.business.domain
class ThemeInfo(
val id: Long,
val name: String,
val description: String,
val difficulty: String,
val thumbnailUrl: String,
val price: Int,
val minParticipants: Short,
val maxParticipants: Short,
val availableMinutes: Short,
val expectedMinutesFrom: Short,
val expectedMinutesTo: Short
)