Guest User

Untitled

a guest
Jun 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. @Entity
  2. public class Post extends Model {
  3.  
  4. public String title;
  5. public String content;
  6. public Date postDate;
  7.  
  8. @ManyToOne
  9. public Author author;
  10.  
  11. @OneToMany
  12. public List<Comment> comments;
  13.  
  14. }
Add Comment
Please, Sign In to add comment