Skip to content

Commit

Permalink
refactor: 분양후기와 보유견종 dto일부 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Suxxxxhyun committed Jan 31, 2024
1 parent 50c9d1d commit 67c3585
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import java.time.LocalDate;
import java.util.List;
Expand Down Expand Up @@ -69,8 +70,8 @@ public static class ReviewUpdateRequestDto {
@Length(max = 3000, message = "내용은 최대 3000자까지 입력 가능합니다.")
@Schema(description = "내용", example = "정성스럽게 키우곘습니다!")
private String content;
@NotBlank(message = "이미지 삭제 여부는 필수 입력값입니다.")
@Schema(description = "이미지 삭제 여부")
@NotNull(message = "이미지 삭제 여부는 필수 입력값입니다.")
@Schema(description = "이미지 삭제 여부", example = "false")
private boolean deleteImages;
@NotEmpty(message = "이미지는 필수 입력값입니다.")
@Schema(description = "분양 후기 이미지 리스트")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public static class UpdateDogDto{
private List<String> imgIdToDelete;

@Schema(description = "이미지 삭제 여부 ", example = "false")
@NotBlank(message = "이미지 삭제 여부는 필수 입력 값입니다.")
@NotNull(message = "이미지 삭제 여부는 필수 입력 값입니다.")
private boolean isDeleteImages;

@Schema(description = "보유 견종의 이미지를 입력받는 리스트")
Expand Down

0 comments on commit 67c3585

Please sign in to comment.