관라자 콘텐츠 리스트

- 정렬 순서 id -> releaseDate 내림차순으로 변경
This commit is contained in:
Klaus 2024-01-29 11:15:12 +09:00
parent 67522804d9
commit 89beba25b6
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class AdminAudioContentQueryRepositoryImpl(
.where(where)
.offset(offset)
.limit(limit)
.orderBy(audioContent.id.desc())
.orderBy(audioContent.releaseDate.desc())
.fetch()
}