-
Notifications
You must be signed in to change notification settings - Fork 8
refactor: 대학 검색 응답 수정 #624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
whqtker
merged 15 commits into
solid-connection:develop
from
whqtker:refactor/623-modify-university-search-response
Jan 25, 2026
Merged
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5a11bc4
refactor: home_university와 university_info_for_apply가 FK 관계를 가지도록
whqtker ff30af8
chore: FK 변경에 따른 목데이터 수정
whqtker 1adeb67
Merge branch 'develop' of https://github.com/whqtker/local-solid-conn…
whqtker 0c106e7
refactor: 필터 검색 엔드포인트 삭제
whqtker 0be2c03
refactor: 필터 검색 관련 서비스 로직 삭제
whqtker 5ed339f
refactor: 필터 검색 관련 레포지토리 메서드 삭제
whqtker c599b1d
refactor: 필터 검색 관련 DTO 삭제
whqtker c4738a6
test: 필터 검색 관련 테스트 코드 삭제
whqtker 398814c
refactor: 지원 대학 관련 응답에 협정 대학 이름 추가
whqtker 26c86a1
test: 지원 대학 응답 수정에 따른 테스트 수정
whqtker 0fbe7ed
refactor: 간접 참조 대신 연관관계 추가
whqtker d778806
test: 간접 참조 방식에서 연관 관계 설정으로 따른 테스트 코드 수정
whqtker 2c63ea5
chore: 목데이터에서 지원 대학 테이블에 협정 대학 ID를 설정하도록
whqtker 1564227
test: home university fixture 추가
whqtker 7482dcf
refactor: home university에 대한 fetch join 추가
whqtker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
...ain/java/com/example/solidconnection/university/dto/UnivApplyInfoFilterSearchRequest.java
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...main/java/com/example/solidconnection/university/repository/HomeUniversityRepository.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| package com.example.solidconnection.university.repository; | ||
|
|
||
| import com.example.solidconnection.university.domain.HomeUniversity; | ||
| import java.util.List; | ||
| import org.springframework.data.jpa.repository.JpaRepository; | ||
|
|
||
| public interface HomeUniversityRepository extends JpaRepository<HomeUniversity, Long> { | ||
|
|
||
| List<HomeUniversity> findAllByIdIn(List<Long> ids); | ||
| } |
3 changes: 0 additions & 3 deletions
3
...m/example/solidconnection/university/repository/custom/UnivApplyInfoFilterRepository.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,11 @@ | ||
| package com.example.solidconnection.university.repository.custom; | ||
|
|
||
| import com.example.solidconnection.university.domain.LanguageTestType; | ||
| import com.example.solidconnection.university.domain.UnivApplyInfo; | ||
| import java.util.List; | ||
|
|
||
| public interface UnivApplyInfoFilterRepository { | ||
|
|
||
| List<UnivApplyInfo> findAllByRegionCodeAndKeywordsAndTermId(String regionCode, List<String> keywords, Long term); | ||
|
|
||
| List<UnivApplyInfo> findAllByFilter(LanguageTestType testType, String testScore, Long termId, List<String> countryKoreanNames); | ||
|
|
||
| List<UnivApplyInfo> findAllByText(String text, Long termId); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.