[F] Fix chusan import reflection

This commit is contained in:
Azalea
2024-03-31 11:53:36 -04:00
parent 3a8616e225
commit 49d4e88022
2 changed files with 1 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ interface Chu3UserLinked<T> : IUserRepo<Chu3UserData, T> {
}
interface Chu3UserLoginBonusRepo : JpaRepository<UserLoginBonus, Int> {
interface Chu3UserLoginBonusRepo : Chu3UserLinked<UserLoginBonus> {
@Query(
value = "select * from chusan_user_login_bonus where user = ?1 and version = ?2 and is_finished = ?3 order by last_update_date desc",
nativeQuery = true