Skip to content

Commit

Permalink
[fix] #34 - 지원자 결과설정 알림 수정
Browse files Browse the repository at this point in the history
- createdAt 추가
  • Loading branch information
haewoni committed Nov 13, 2024
1 parent 09e6e32 commit 5dbc20b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ public List<ApplicantsDTO> getJobApplicants(int postId) {
}).collect(Collectors.toList());
}

// TODO: 지원자 알림
// 5. 지원자 결과 설정
@Override
public String setApplicantResult(ApplicantResultReqDTO applicantResultReqDTO) {
Expand Down Expand Up @@ -168,6 +167,7 @@ public String setApplicantResult(ApplicantResultReqDTO applicantResultReqDTO) {
.userApply(userApply)
.notice(entName+" 지원결과 : "+ applyResultKorean)
.isConfirmed(YN.N)
.createdAt(new Date())
.build();

notificationRepository.save(notification);
Expand Down

0 comments on commit 5dbc20b

Please sign in to comment.