Skip to content

Commit

Permalink
[FIX] 학점 정보 변경 (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks authored Jun 3, 2024
1 parent 938f2fb commit 007f78d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public Slice<GetApplicantDto> findByPostIdAndRoleId(Long postId, Long roleId, Pa
.select(new QGetApplicantDto(recruitmentApplicant.id,
recruitmentApplicant.applicant.id.stringValue(),
recruitmentApplicant.applicant.nickname, recruitmentApplicant.applicant.profileImgFileName,
recruitmentApplicant.applicant.name, recruitmentApplicant.applicant.evaluationScore,
recruitmentApplicant.applicant.name, recruitmentApplicant.applicant.gpa,
recruitmentApplicant.applicant.university.name, recruitmentApplicant.applicant.department.name,
getMainMail, recruitmentApplicant.applicant.admissionYear,
recruitmentApplicant.role.name, recruitmentApplicant.comment))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public ResponseEntity<GetApplyInfoResponseDto> getApplyInfo(@PathVariable("id")
postId);

return ResponseEntity.ok()
.body(new GetApplyInfoResponseDto(user.getName(), user.getEvaluationScore(),
.body(new GetApplyInfoResponseDto(user.getName(), user.getGpa(),
user.getUniversity().getName(), user.getDepartment().getName(),
user.getAdmissionYear(),
user.getUniversityEmail(), availableRecruitmentRoleDtos));
Expand Down

0 comments on commit 007f78d

Please sign in to comment.