Skip to content

Commit

Permalink
feat: Recruitment Schedule 대응 (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
hocaron authored Feb 1, 2025
2 parents 159da9a + 3e10bb5 commit 47967d0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ConfirmationScheduler {
* 지원 마감시 임시저장인 지원서에 대한 지원자 응답 변경
* TO_BE_DETERMINED -> NOT_APPLICABLE
*/
@Scheduled(cron = "0 0 0 15 2 ?") // 2024-02-15 00:00:00
@Scheduled(cron = "0 0 0 17 2 ?") // 2025-02-17 00:00:00
public void updateConfirmationAtRecruitmentEnded() {
log.info("[ConfirmationScheduler] updateConfirmationAtRecruitmentEnded >>> start");
confirmationFacadeService.updateToBeDeterminedToNotApplicable(14);
Expand All @@ -28,7 +28,7 @@ public void updateConfirmationAtRecruitmentEnded() {
* 서류 발표 후 24시간 뒤 서류 합격이지만 응답 대기중인 지원서에 대한 지원자 응답 변경
* INTERVIEW_CONFIRM_WAITING -> INTERVIEW_CONFIRM_REJECTED
*/
@Scheduled(cron = "0 0 21 21 2 ?") // 2024-02-20 21:00:00 24시간 뒤인 02-21 21:00:00
@Scheduled(cron = "0 0 21 20 2 ?") // 2025-02-19 21:00:00 24시간 뒤인 02-20 21:00:00
public void updateConfirmationAtScreeningEnded() {
log.info("[ConfirmationScheduler] updateConfirmationAtScreeningEnded >>> start");
confirmationFacadeService.updateInterviewConfirmWaitingToRejected(14);
Expand All @@ -39,7 +39,7 @@ public void updateConfirmationAtScreeningEnded() {
* 면접 발표 후 24시간 뒤 면접 합격이지만 응답 대기중인 지원서에 대한 지원자 응답 변경
* FINAL_CONFIRM_WAITING -> FINAL_CONFIRM_REJECTED
*/
@Scheduled(cron = "0 0 21 29 2 ?") // 2024-02-28 21:00:00 24시간 뒤인 02-09 00:00:00
@Scheduled(cron = "0 0 21 25 2 ?") // 2025-02-24 21:00:00 24시간 뒤인 02-25 21:00:00
public void updateConfirmationAtInterviewEnded() {
log.info("[ConfirmationScheduler] updateConfirmationAtInterviewEnded >>> start");
confirmationFacadeService.updateFinalConfirmWaitingToRejected(14);
Expand Down

0 comments on commit 47967d0

Please sign in to comment.