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

Refactor: 멤버 이름 변수명 변경 #121

Merged
merged 3 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static AttendanceRecordResponse of(Member member, AttendanceStatistic att

public record AttendanceMemberInfo(
Long memberId,
String memberName,
String name,
MemberPosition position
){
static AttendanceMemberInfo from(Member member) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

public record WinnerInfoResponse(
Long memberId,
String memberName,
String name,
Long educationId,
String backFourNumber,
MemberPosition memberPosition
MemberPosition position
) {
public static WinnerInfoResponse of(Winner winner, Member member, String backFourNumber) {
return new WinnerInfoResponse(
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public record KingMemberInfo(
Long memberId,
String memberName,
String name,
String backFourNumber
) {
public static KingMemberInfo from(Member member, String backFourNumber) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public record RecordResponse(
Long recordId,
Long ticketNumber,
Long memberId,
String memberName,
String name,
String backFourNumber,
String reply
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public record ScorerResponse(
Long scorerId,
Long memberId,
String memberName,
String name,
String backFourNumber
) {
public static ScorerResponse of(Scorer scorer, Member member, String backFourNumber) {
Expand Down
Loading