jpa mapping
@Id
@GeneratedValue(Strategy = GenerationType.IDENTITY)
private Integer id;
jpa mapping
@Id
@GeneratedValue(Strategy = GenerationType.IDENTITY)
private Integer id;
jpa mapping
@Column
private String nom;
public void setNom(String n) {nom= n;}
public String getNom() {return nom;}
jpa mapping
@Id
@GeneratedValue(Strategy = GenerationType.AUTO)
private Integer id;
private void setId(Integer i) { id = i; }
public Integer getId() { return id; }
jpa mapping
@Column(name="annee_naissance")
private Integer anneeNaissance;
public void setAnneeNaissance(Integer a) {anneeNaissance = a;}
public Integer getAnneeNaissance() {return anneeNaissance;}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us