-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: findApprovedApplicants의 N+1 쿼리를 개선한다. (#447)
* refactor: findApprovedApplicants를 fetch join에서 dto projections으로 변경한다. * chore: 보호소, 봉사자 프론트 url을 변경한다.
- Loading branch information
Showing
11 changed files
with
151 additions
and
46 deletions.
There are no files selected for viewing
This file contains 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 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
22 changes: 22 additions & 0 deletions
22
...m/clova/anifriends/domain/applicant/repository/response/FindApprovedApplicantsResult.java
This file contains 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,22 @@ | ||
package com.clova.anifriends.domain.applicant.repository.response; | ||
|
||
import com.clova.anifriends.domain.applicant.vo.ApplicantStatus; | ||
import com.clova.anifriends.domain.volunteer.vo.VolunteerGender; | ||
import java.time.LocalDate; | ||
|
||
public interface FindApprovedApplicantsResult { | ||
|
||
Long getVolunteerId(); | ||
|
||
Long getApplicantId(); | ||
|
||
String getVolunteerName(); | ||
|
||
LocalDate getVolunteerBirthDate(); | ||
|
||
VolunteerGender getVolunteerGender(); | ||
|
||
String getVolunteerPhoneNumber(); | ||
|
||
ApplicantStatus getApplicantStatus(); | ||
} |
This file contains 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 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
Submodule backend-config
updated
from 95be76 to 4b6121
This file contains 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 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 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 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.