Skip to content

Instantly share code, notes, and snippets.

@tylertreat
Created December 31, 2014 21:37
Show Gist options
  • Select an option

  • Save tylertreat/e355616c93a62f45ff30 to your computer and use it in GitHub Desktop.

Select an option

Save tylertreat/e355616c93a62f45ff30 to your computer and use it in GitHub Desktop.
public class Department {
@PrimaryKey
private long id;
private String name;
@OneToMany(className = "com.foo.domain.Employee", name = "works-in", column = "dept")
private List<Employee> employees;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment