Skip to content

Commit

Permalink
Merge pull request #189 from dnd-side-project/hotfix-#188
Browse files Browse the repository at this point in the history
Fix experience allowableValues
  • Loading branch information
miraexhoi authored Oct 15, 2024
2 parents 6f51776 + ef4a81c commit 92a7a8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public record CareerInfoRequest(
@Schema(description = "회사", allowableValues = {"비공개", "대기업", "중견기업", "중소기업", "스타트업", "외국계", "취준생/인턴"})
@NotBlank String company,

@Schema(description = "연차", allowableValues = {"비공개", "1년 차 미만", "1~2년 차", "2~3년 차", "3~4년 차", "4~5년 차", "5년 차 이상"})
@Schema(description = "연차", allowableValues = {"1년 차 미만", "1~2년 차", "2~3년 차", "3~4년 차", "4~5년 차", "5년 차 이상", "취준생/인턴", "비공개"})
@NotBlank String experience
) {
}

0 comments on commit 92a7a8b

Please sign in to comment.