From ef4a81c689fc574dcd17d1b0cda27a25bf988e23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EB=AF=B8=EB=9E=98?= Date: Tue, 15 Oct 2024 23:26:57 +0900 Subject: [PATCH] !hotfix: fix experience allowableValues --- .../domain/auth/presentation/dto/request/CareerInfoRequest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/dnd/spaced/domain/auth/presentation/dto/request/CareerInfoRequest.java b/src/main/java/com/dnd/spaced/domain/auth/presentation/dto/request/CareerInfoRequest.java index c03f432..2c73318 100644 --- a/src/main/java/com/dnd/spaced/domain/auth/presentation/dto/request/CareerInfoRequest.java +++ b/src/main/java/com/dnd/spaced/domain/auth/presentation/dto/request/CareerInfoRequest.java @@ -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 ) { }