Skip to content

Instantly share code, notes, and snippets.

@joemccall86
Created June 27, 2013 22:39
Show Gist options
  • Select an option

  • Save joemccall86/5881041 to your computer and use it in GitHub Desktop.

Select an option

Save joemccall86/5881041 to your computer and use it in GitHub Desktop.
@Entity
public Department {
@Id String name;
Long latitude;
Long longidude;
@ManyToOne
Set<Officer> officers;
}
@Entity
public class Officer {
@Id String badge;
String firstName;
String lastName;
@OneToMany
Department department;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment