Skip to content

Commit

Permalink
Merge pull request #111 from jurumarble/dev
Browse files Browse the repository at this point in the history
fix : 댓글 수정, 투표 제목, 투표 내용, 제목 A,B 수정에 Request에 요구사항에 맞게 @SiZe 적용
  • Loading branch information
alsduq1117 authored Oct 19, 2023
2 parents cf0f385 + 7180218 commit 43692ce
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
import lombok.NoArgsConstructor;

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;

@Getter
@NoArgsConstructor
public class UpdateCommentRequest {

@Schema(description = "수정할 댓글 내용", example = "수정된 내용입니다.")
@NotBlank(message = "댓글 내용은 비어 있을 수 없습니다.")
@Size(max = 600)
private String content;

@Builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Positive;
import javax.validation.constraints.Size;

@Getter
@Setter
Expand All @@ -17,6 +18,7 @@ public class UpdateDrinkVoteRequest {

@Schema(description = "투표 제목", example = "A, B 중 어떤게 나을까요?")
@NotBlank(message = "투표 제목은 필수입니다.")
@Size(max = 75, message = "제목은 최대 75자까지 입력 가능합니다.")
private String title;

@Schema(description = "전통주 후보 A의 id (전통주 아이디는 다른값으로 넣어주셔야합니다.)")
Expand All @@ -29,6 +31,7 @@ public class UpdateDrinkVoteRequest {

@Schema(description = "투표 상세글")
@NotBlank(message = "투표 상세글은 필수입니다.")
@Size(max = 600, message = "내용은 최대 600자까지 입력할 가능합니다.")
private String detail;

public UpdateDrinkVoteServiceRequest toServiceRequest(Long voteId, Long userId) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import lombok.*;

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;

@Getter
@Setter
Expand All @@ -13,18 +14,22 @@ public class UpdateNormalVoteRequest {

@Schema(description = "투표 제목", example = "A, B 중 어떤게 나을까요?")
@NotBlank(message = "투표 제목은 필수입니다.")
@Size(max = 75, message = "제목은 최대 75자까지 입력 가능합니다.")
private String title;

@Schema(description = "투표 상세글")
@NotBlank(message = "투표 상세글은 필수입니다.")
@Size(max = 600, message = "내용은 최대 600자까지 입력할 가능합니다.")
private String detail;

@Schema(description = "A 항목의 제목")
@NotBlank(message = "투표 A항목의 제목은 필수입니다.")
@Size(max = 55, message = "제목은 최대 55자까지 입력 가능합니다.")
private String titleA;

@Schema(description = "B 항목의 제목")
@NotBlank(message = "투표 B항목의 제목은 필수입니다.")
@Size(max = 55, message = "제목은 최대 55자까지 입력 가능합니다.")
private String titleB;

@Builder
Expand Down

0 comments on commit 43692ce

Please sign in to comment.