홈 - 오직 보이스온에서만, 요일별 시리즈 번역 데이터 조회 기능 추가

This commit is contained in:
2025-12-16 00:43:36 +09:00
parent f58687ef3a
commit db18d5c8b5
2 changed files with 48 additions and 2 deletions

View File

@@ -4,4 +4,5 @@ import org.springframework.data.jpa.repository.JpaRepository
interface SeriesTranslationRepository : JpaRepository<SeriesTranslation, Long> {
fun findBySeriesIdAndLocale(seriesId: Long, locale: String): SeriesTranslation?
fun findBySeriesIdInAndLocale(seriesIds: List<Long>, locale: String): List<SeriesTranslation>
}