-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from 7JEON8KI/feat/member--ISSUE-83
멤버 정보 조회 및 수정
- Loading branch information
Showing
7 changed files
with
158 additions
and
2 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
30 changes: 30 additions & 0 deletions
30
src/main/java/com/hyundai/domain/login/dto/MemberInfoRequestDto.java
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.hyundai.domain.login.dto; | ||
|
||
import com.hyundai.domain.login.entity.enumtype.Role; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
|
||
/** | ||
* fileName : MemberInfoResponseDto | ||
* author : 변형준 | ||
* since : 2/28/24 | ||
* 내용 : | ||
*/ | ||
@Getter | ||
@Builder | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class MemberInfoRequestDto { | ||
private String memberName; | ||
private String memberNickname; | ||
private String memberPhone; | ||
private String memberGender; | ||
private String memberBirth; | ||
private String infoAddr; | ||
private String infoZipcode; | ||
} |
31 changes: 31 additions & 0 deletions
31
src/main/java/com/hyundai/domain/login/dto/MemberInfoResponseDto.java
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package com.hyundai.domain.login.dto; | ||
|
||
import com.hyundai.domain.login.entity.enumtype.Role; | ||
import lombok.*; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
|
||
/** | ||
* fileName : MemberInfoResponseDto | ||
* author : 변형준 | ||
* since : 2/28/24 | ||
* 내용 : | ||
*/ | ||
@Getter | ||
@Builder | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class MemberInfoResponseDto { | ||
private String memberId; | ||
private String memberEmail; | ||
private String memberName; | ||
private String memberNickname; | ||
private String memberPhone; | ||
private String memberGender; | ||
private LocalDate memberBirth; | ||
private LocalDateTime createdAt; | ||
private LocalDateTime updatedAt; | ||
private String infoAddr; | ||
private String infoZipcode; | ||
} |
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
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