Skip to content

Instantly share code, notes, and snippets.

@armed
Created November 9, 2010 07:40
Show Gist options
  • Save armed/668822 to your computer and use it in GitHub Desktop.
Save armed/668822 to your computer and use it in GitHub Desktop.
@Entity
public class Post extends Model {
public String title;
public String content;
public Date postDate;
@ManyToOne
public Author author;
@OneToMany
public List<Comment> comments;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment