Skip to content

Instantly share code, notes, and snippets.

@sejersbol
Created February 26, 2011 08:43
Show Gist options
  • Save sejersbol/845059 to your computer and use it in GitHub Desktop.
Save sejersbol/845059 to your computer and use it in GitHub Desktop.
Simple Lombok annotated DTO.
...
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