Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. import java.io.Serializable;
  3. import java.util.Collection;
  4.  
  5. import javax.persistence.*;
  6. @Entity
  7. @Table(name="personnes")
  8. public class Personne implements Serializable {
  9. @Id
  10. @GeneratedValue(strategy=GenerationType.IDENTITY)
  11. private Long code;
  12. private String nom;
  13. private String prenom;
  14. private Long cin;
  15.  
  16.  
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement