[F] Fix recentNBMusicList return

This commit is contained in:
Azalea
2025-01-05 04:13:38 -05:00
parent 250d92d225
commit 4c3ed1d0da
2 changed files with 8 additions and 4 deletions

View File

@@ -127,7 +127,9 @@ interface Chu3UserCMissionProgressRepo : Chu3UserLinked<UserCMissionProgress> {
fun findByUser_Card_ExtIdAndMissionIdAndOrder(extId: Long, missionId: Int, order: Int): Optional<UserCMissionProgress>
}
interface Chu3NetBattleLogRepo : Chu3UserLinked<Chu3NetBattleLog>
interface Chu3NetBattleLogRepo : Chu3UserLinked<Chu3NetBattleLog> {
fun findTop20ByUserOrderByIdDesc(user: Chu3UserData): List<Chu3NetBattleLog>
}
interface Chu3UserMiscRepo : Chu3UserLinked<Chu3UserMisc>