Skip to content

Commit

Permalink
[chore] DTO에 누락된 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwoo7 committed Aug 19, 2024
1 parent 8b57dd0 commit e75b719
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions src/main/java/com/book/backend/domain/user/dto/UserDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,22 @@
@AllArgsConstructor
public class UserDto {
private Long userId;

private String loginId;
private String kakaoId;

private LocalDateTime regDate;

private String loginId;

private String nickname;
private String password;

private String gender;

private LocalDate birthDate;

private String email;

private String phone;

public static final String description =
"userId : 유저 아이디 | " +
"loginId : 유저 로그인 아이디 (일반 로그인 시 생성) | " +
"kakaoId : 유저 카카오 아이디 (카카오 로그인 시 생성) | " +
"regDate : 가입 시각 | " +
"loginId : 유저 로그인 아이디 (일반 로그인 시 생성) | " +
"nickname : 닉네임 | " +
"password : 암호화된 비밀번호 (일반 로그인 시 생성) | " +
"gender : 성별 | " +
"birthDate : 생일 | " +
Expand Down

0 comments on commit e75b719

Please sign in to comment.