-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
62 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,14 +45,38 @@ public class MemberRequestDto { | |
example = "[email protected]", | ||
description = "이메일" | ||
) | ||
@NotBlank | ||
private String email; | ||
|
||
@Schema( | ||
example = "https://...", | ||
description = "Git 저장소 URL" | ||
description = "Github 저장소 URL" | ||
) | ||
@Pattern(regexp = "^https?://.*$", message = "gitRepositoryLink의 URL 형식이 올바르지 않습니다.") | ||
private String gitRepositoryLink; | ||
|
||
@Schema( | ||
example = "https://...", | ||
description = "Behance URL" | ||
) | ||
@Pattern(regexp = "^https?://.*$", message = "Behance의 URL 형식이 올바르지 않습니다.") | ||
private String behanceLink; | ||
|
||
@Schema( | ||
example = "010-0000-0000", | ||
description = "전화번호" | ||
) | ||
private String phoneNumber; | ||
|
||
@Schema( | ||
example = "000000000", | ||
description = "학번" | ||
) | ||
private String studentNumber; | ||
|
||
@Schema( | ||
example = "컴퓨터공학부", | ||
description = "학과" | ||
) | ||
private String department; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters