Skip to content

Instantly share code, notes, and snippets.

@grim13b
Created August 23, 2016 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grim13b/a80b7cc5c08fe9960835d046c43eba19 to your computer and use it in GitHub Desktop.
Save grim13b/a80b7cc5c08fe9960835d046c43eba19 to your computer and use it in GitHub Desktop.
Lombok Conflict DataModel
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
public class DataModel {
private int id;
private String description;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment