Skip to content

Commit

Permalink
[#3] fix: 사용자 정보 업데이트 메소드 내 업데이트 가능한 칼럼 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
dl-00-e8 committed Jan 28, 2024
1 parent ac2f9db commit 856e2a8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ public class Member extends BaseTimeEntity {

public void update(MemberReq memberReq) {
this.name = memberReq.name();
this.status = memberReq.status();
this.major = memberReq.major();
this.job = memberReq.job();
}

@Builder
Expand Down

0 comments on commit 856e2a8

Please sign in to comment.