[general & maimai2] Use fixed bean naming

This commit is contained in:
Dom Eori
2021-12-26 23:52:12 +09:00
parent 227fdfcd0f
commit cf2b149925
19 changed files with 20 additions and 25 deletions

View File

@@ -11,7 +11,7 @@ import java.util.Optional;
/**
* @author samnyan (privateamusement@protonmail.com)
*/
@Repository
@Repository("Maimai2UserChargeRepository")
public interface UserChargeRepository extends JpaRepository<UserCharge, Long> {
List<UserCharge> findByUser_Card_ExtId(Long extId);

View File

@@ -7,7 +7,7 @@ import org.springframework.stereotype.Repository;
/**
* @author samnyan (privateamusement@protonmail.com)
*/
@Repository
@Repository("Maimai2UserPlaylogRepository")
public interface UserPlaylogRepository extends JpaRepository<UserPlaylog, Long> {
}