mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-10 21:07:27 +08:00
[+] Repo
This commit is contained in:
@@ -118,16 +118,20 @@ interface Chu3UserPlaylogRepo : GenericPlaylogRepo<UserPlaylog>, Chu3UserLinked<
|
|||||||
fun findByUser_Card_ExtIdAndMusicIdAndLevel(extId: Long, musicId: Int, level: Int): List<UserPlaylog>
|
fun findByUser_Card_ExtIdAndMusicIdAndLevel(extId: Long, musicId: Int, level: Int): List<UserPlaylog>
|
||||||
}
|
}
|
||||||
|
|
||||||
interface UserCMissionRepo : Chu3UserLinked<UserCMission> {
|
interface Chu3UserCMissionRepo : Chu3UserLinked<UserCMission> {
|
||||||
fun findByUser_Card_ExtIdAndMissionId(extId: Long, missionId: Int): Optional<UserCMission>
|
fun findByUser_Card_ExtIdAndMissionId(extId: Long, missionId: Int): Optional<UserCMission>
|
||||||
}
|
}
|
||||||
|
|
||||||
interface UserCMissionProgressRepo : Chu3UserLinked<UserCMissionProgress> {
|
interface Chu3UserCMissionProgressRepo : Chu3UserLinked<UserCMissionProgress> {
|
||||||
fun findByUser_Card_ExtIdAndMissionId(extId: Long, missionId: Int): List<UserCMissionProgress>
|
fun findByUser_Card_ExtIdAndMissionId(extId: Long, missionId: Int): List<UserCMissionProgress>
|
||||||
|
|
||||||
fun findByUser_Card_ExtIdAndMissionIdAndOrder(extId: Long, missionId: Int, order: Int): Optional<UserCMissionProgress>
|
fun findByUser_Card_ExtIdAndMissionIdAndOrder(extId: Long, missionId: Int, order: Int): Optional<UserCMissionProgress>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface Chu3MatchingMemberRepo : JpaRepository<Chu3MatchingMember, Long> {
|
||||||
|
fun existsByUserIdAndUserName(userId: Long, userName: String): Boolean
|
||||||
|
}
|
||||||
|
|
||||||
interface Chu3GameAvatarAccRepo : JpaRepository<AvatarAcc, Long>
|
interface Chu3GameAvatarAccRepo : JpaRepository<AvatarAcc, Long>
|
||||||
|
|
||||||
interface Chu3GameCharacterRepo : JpaRepository<Character, Long>
|
interface Chu3GameCharacterRepo : JpaRepository<Character, Long>
|
||||||
@@ -197,8 +201,9 @@ class Chu3Repos(
|
|||||||
val userMap: Chu3UserMapRepo,
|
val userMap: Chu3UserMapRepo,
|
||||||
val userMusicDetail: Chu3UserMusicDetailRepo,
|
val userMusicDetail: Chu3UserMusicDetailRepo,
|
||||||
val userPlaylog: Chu3UserPlaylogRepo,
|
val userPlaylog: Chu3UserPlaylogRepo,
|
||||||
val userCMission: UserCMissionRepo,
|
val userCMission: Chu3UserCMissionRepo,
|
||||||
val userCMissionProgress: UserCMissionProgressRepo,
|
val userCMissionProgress: Chu3UserCMissionProgressRepo,
|
||||||
|
val matchingMember: Chu3MatchingMemberRepo,
|
||||||
val gameAvatarAcc: Chu3GameAvatarAccRepo,
|
val gameAvatarAcc: Chu3GameAvatarAccRepo,
|
||||||
val gameCharacter: Chu3GameCharacterRepo,
|
val gameCharacter: Chu3GameCharacterRepo,
|
||||||
val gameCharge: Chu3GameChargeRepo,
|
val gameCharge: Chu3GameChargeRepo,
|
||||||
|
|||||||
Reference in New Issue
Block a user