Skip to content

Instantly share code, notes, and snippets.

@jeetprksh
Created September 27, 2018 17:00
Show Gist options
  • Save jeetprksh/2839169ac35e3189238f21947e2ed2f5 to your computer and use it in GitHub Desktop.
Save jeetprksh/2839169ac35e3189238f21947e2ed2f5 to your computer and use it in GitHub Desktop.
@Entity
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
private String firstName;
private String lastName;
private int age;
public User(String firstName, String lastName, int age) {
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
}
// getters and setters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment