Skip to content

Instantly share code, notes, and snippets.

@vinchauhan
Created October 16, 2017 16:27
Show Gist options
  • Save vinchauhan/3c4c3232fb3d235cdac29c74c6baa0f1 to your computer and use it in GitHub Desktop.
Save vinchauhan/3c4c3232fb3d235cdac29c74c6baa0f1 to your computer and use it in GitHub Desktop.
@Entity
public class Developer {
@Id
@GeneratedValue
private Long id;
private String name;
private String skills;
@ManyToOne
private Project project;
private Developer(){
}
public Developer(String name, String skills) {
this.name = name;
this.skills = skills;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment