Skip to content

Commit

Permalink
[fix] #25 enum class not null check로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
RyuKwanKon committed Jan 6, 2024
1 parent f8bf866 commit 757890f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
public record PostCreateRequestDto(
@NotBlank(message = "제목을 입력해주세요") String title,
@NotBlank(message = "내용을 입력해주세요") String content,
@NotBlank(message = "중요 키워드를 입력해주세요") ImportantKeyType importantKey,
@NotBlank(message = "유사도를 입력해주세요") SimilarityKeyType similarityKey,
@NotBlank(message = "기숙사 유형을 입력해주세요") RoomType roomType,
@NotBlank(message = "모집 마감기간을 입력해주세요") LocalDate endDate,
@NotNull(message = "중요 키워드를 입력해주세요") ImportantKeyType importantKey,
@NotNull(message = "유사도를 입력해주세요") SimilarityKeyType similarityKey,
@NotNull(message = "기숙사 유형을 입력해주세요") RoomType roomType,
@NotNull(message = "모집 마감기간을 입력해주세요") LocalDate endDate,
@NotNull(message = "체크리스트를 입력해주세요") CheckListRequestDto checkList
) {
}

0 comments on commit 757890f

Please sign in to comment.