Skip to content

Instantly share code, notes, and snippets.

@SuvidhaMalaviya
Created February 7, 2023 17:39
Show Gist options
  • Save SuvidhaMalaviya/84542a54e238a491c853a145c542e95d to your computer and use it in GitHub Desktop.
Save SuvidhaMalaviya/84542a54e238a491c853a145c542e95d to your computer and use it in GitHub Desktop.
Java Model
@Entity
public class Employee {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
private String role;
// constructor, getters, and setters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment