Skip to content

Commit

Permalink
Merge pull request #98 from LetsCareer-A/refactor/#97
Browse files Browse the repository at this point in the history
[refactor] 전형 단계 상태 추가
  • Loading branch information
oosedus authored Sep 22, 2024
2 parents 9aa4df9 + e26a048 commit 4e8c4c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
@Getter
@AllArgsConstructor
public enum Status {
DO("준비 진행 중"), FIN ("진행 완료");
DO("준비 진행 중"), FIN ("진행 완료"), FAIL("불합경"), PASS("합격");
private final String value;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.example.letscareer.appealCareer.domain.model.AppealCareer;
import com.example.letscareer.appealCareer.domain.repository.AppealCareerRepository;
import com.example.letscareer.common.exception.model.NotFoundException;
import com.example.letscareer.int_review.domain.model.IntReview;
import com.example.letscareer.int_review.domain.repository.IntReviewRepository;
import com.example.letscareer.mid_review.domain.model.MidReview;
import com.example.letscareer.mid_review.domain.repository.MidReviewRepository;
Expand All @@ -14,8 +13,6 @@
import com.example.letscareer.self_intro.domain.repository.SelfIntroRepository;
import com.example.letscareer.stage.domain.dto.converter.StageConverter;
import com.example.letscareer.stage.domain.model.Stage;
import com.example.letscareer.stage.domain.model.Status;
import com.example.letscareer.stage.domain.model.Type;
import com.example.letscareer.stage.domain.dto.AppealCareerDTO;
import com.example.letscareer.stage.domain.dto.IntReviewDTO;
import com.example.letscareer.stage.domain.dto.MidReviewDTO;
Expand All @@ -33,7 +30,6 @@

import java.time.LocalDate;
import java.time.Period;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;

Expand Down

0 comments on commit 4e8c4c9

Please sign in to comment.