Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Member 생성, 조회, 수정 구현 #12

Merged
merged 13 commits into from
Jan 22, 2025
Merged
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.gdgoc.study_group.member.dto.request;

import lombok.Getter;

@Getter
public class MemberCreateRequestDto {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

record 사용을 권장드리옵니다

private String name;
private String github;
private String studentNumber;
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

e379980#r1923096926 와 같사옵니다

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.gdgoc.study_group.member.dto.request;

import lombok.Getter;

@Getter
public class MemberUpdateRequestDto {
private String name;
private String github;
private String studentNumber;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.gdgoc.study_group.member.dto.response;

import lombok.Builder;
import lombok.Getter;

@Getter
@Builder
public class MemberCreateResponseDto {
private String studentId;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.gdgoc.study_group.member.dto.response;

import lombok.Builder;
import lombok.Getter;

@Getter
@Builder
public class MemberGetResponseDto {
private String studentId;
private String name;
private String github;
private String studentNumber;
}
Loading