-
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
5 changed files
with
47 additions
and
12 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 |
---|---|---|
|
@@ -26,13 +26,16 @@ public class JoinWorkerRequest { | |
// 공통 정보 | ||
@Schema(description = "로그인 아이디", example = "abcdefg1") | ||
@NotBlank | ||
private String loginId; // 인증 코드 | ||
private String loginId; | ||
@Schema(description = "로그인 패스워드", example = "abcdefg1") | ||
@NotBlank | ||
private String password; // 인증 코드 | ||
private String password; | ||
@Schema(description = "휴대폰 번호", example = "01012345678") | ||
@NotBlank | ||
private String phone; // 휴대폰 번호 | ||
private String phone; | ||
@Schema(description = "본인 확인 인증 번호", example = "123456") | ||
@NotBlank | ||
private String authCode; | ||
@Schema(description = "이메일", example = "[email protected]") | ||
private String email; // 이메일 | ||
|
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
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