데이터 전송 및 이동을 위해 생성되는 객체
@Getter
public class MemoRequestDto {
private String username;
private String contents;
}
@Getter
@AllArgsConstructor
public class MemoResponseDto {
private Long id;
private String username;
private String contents;
}
@Data
@AllArgsConstructor
public class Memo {
private Long id;
private String username;
private String contents;
}
보통 이렇게 기존 클래스와 거의 똑같다!
.
.
.
나중에 더 자세히 알아보자..