Skip to content

Commit 2dbb1ad

Browse files
committed
refactor: Parameter 명칭 변경
- siteUser -> siteUserId로 변경
1 parent cfa18eb commit 2dbb1ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/example/solidconnection/application/repository/ApplicationRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface ApplicationRepository extends JpaRepository<Application, Long>
3535
AND a.term = :term
3636
AND a.isDelete = false
3737
""")
38-
Optional<Application> findBySiteUserIdAndTerm(@Param("siteUserId") Long siteUserId, @Param("term") String term);
38+
Optional<Application> findBySiteUserIdAndTerm(@Param("siteUserId") long siteUserId, @Param("term") String term);
3939

4040
default Application getApplicationBySiteUserIdAndTerm(long siteUserId, String term) {
4141
return findBySiteUserIdAndTerm(siteUserId, term)

0 commit comments

Comments
 (0)