Skip to content

Commit

Permalink
Merge pull request #185 from YogitTeam/feat/report
Browse files Browse the repository at this point in the history
Feat/report
  • Loading branch information
xhaktmchl authored Apr 6, 2023
2 parents bc7c2bc + 3f936de commit 8e5975f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ public class CreateBoardReq {

@ApiModelProperty(example = "3시에 모여서 경복궁역에서 경복궁으로 출발합니다.")
@ApiParam(value = "모임 상세설명", required = false)
@Size(max = 1000)
@Size(max = 3000)
private String introduction; // 게시글 내용 상세설명

@ApiModelProperty(example = "활발한 사람이 오면 좋습니다.")
@ApiParam(value = "원하는 사람 설명", required = false)
@Size(max = 1000)
@Size(max = 3000)
private String kindOfPerson; // 이런 사람을 원합니다 설명 글.

@ApiModelProperty(example = "5")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ public class PatchBoardReq {

@ApiModelProperty(example = "3시에 모여서 경복궁역에서 경복궁으로 출발합니다.")
@ApiParam(value = "모임 상세설명", required = false)
@Size(max = 1000)
@Size(max = 3000)
private String introduction; // 게시글 내용 상세설명

@ApiModelProperty(example = "활발한 사람이 오면 좋습니다.")
@ApiParam(value = "원하는 사람 설명", required = false)
@Size(max = 1000)
@Size(max = 3000)
private String kindOfPerson; // 이런 사람을 원합니다 설명 글.

@ApiModelProperty(example = "5")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import lombok.NoArgsConstructor;

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

@Data
@NoArgsConstructor
Expand All @@ -21,6 +22,7 @@ public class CreateClipBoardReq {

@ApiModelProperty(example = "질문이 있습니다.")
@ApiParam(value = "클립보드 제목", required = false)
@Size(max = 1000)
private String title;

@ApiModelProperty(example = "경복궁역 몇 번 출구인가요?")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import lombok.NoArgsConstructor;

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

@Data
@NoArgsConstructor
Expand All @@ -22,6 +23,7 @@ public class PatchClipBoardReq {
@ApiModelProperty(example = "질문이 있습니다.")
@ApiParam(value = "클립보드 제목", required = false)
@NotBlank
@Size(max = 1000)
private String title;

@ApiModelProperty(example = "경복궁역 몇 번 출구인가요?")
Expand Down

0 comments on commit 8e5975f

Please sign in to comment.