Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

모집공고 상태 자동변경 로직 작성 완료 #389

Merged
merged 8 commits into from
Jun 25, 2024
Next Next commit
feat: 모집공고 상태 나타내는 enum 도입 #353
  • Loading branch information
SongJaeHoonn committed Jun 24, 2024
commit 8bb7f0ce11f43e0241681b87c8bd2445a6f92285
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package page.clab.api.domain.recruitment.domain;

import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public enum RecruitmentStatus {

UPCOMING("UPCOMING", "모집 예정"),
OPEN("OPEN", "모집중"),
CLOSED("CLOSED", "모집 종료");

private String key;
private String description;

}