Guest User

Untitled

a guest
Jun 19th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. @Entity
  2. @Table(name = "recipe", schema = "cookle", catalog = "")
  3. public class RecipeEntity {
  4. private int id;
  5. private String author;
  6. private Integer cookTime;
  7.  
  8. @Id
  9. @Column(name = "id")
  10. @GeneratedValue(strategy = GenerationType.IDENTITY)
  11. public int getId() {
  12. return id;
  13. }
  14.  
  15. ...
  16. }
Add Comment
Please, Sign In to add comment