Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
레코드에서 일반 클래스로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Feb 18, 2024
1 parent c5478bc commit 68ae599
Showing 1 changed file with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@

import com.example.daemawiki.domain.user.model.type.major.MajorType;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;

@Setter
@Getter
@Builder
public record UserDetail(
Integer gen,
MajorType major
) {
public class UserDetail{

private Integer gen;

private MajorType major;

private String club;

}

0 comments on commit 68ae599

Please sign in to comment.