Created
February 26, 2011 08:43
-
-
Save sejersbol/845059 to your computer and use it in GitHub Desktop.
Simple Lombok annotated DTO.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
import lombok.Data; | |
@Data | |
public class SomeDto { | |
private int id; | |
private String firstName; | |
private String lastName; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment