일반적인 DTO 클래스일반적인 DTO 클래스를 정의할 때는 여러 메서드를 수동으로 작성해야 합니다. 예를 들어, 사용자 정보를 담는 UserDto 클래스를 살펴보겠습니다.public class UserDto { private final UUID id; private final String name; private final String email; public UserDto(UUID id, String name, String email) { this.id = id; this.name = name; this.email = email; } public UUID getId() { return id; } public S..