Personne.java
1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package etunicorn;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import java.util.Date;
/**
* Created by geoffrey on 28/01/17.
*/
@Entity
public class Personne {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;
private String carte;
private Date naissance;
private String login;
// private Role role;
public Personne() {
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getCarte() {
return carte;
}
public void setCarte(String carte) {
this.carte = carte;
}
public Date getNaissance() {
return naissance;
}
public void setNaissance(Date naissance) {
this.naissance = naissance;
}
public String getLogin() {
return login;
}
public void setLogin(String login) {
this.login = login;
}
// public Role getRole() {
// return role;
// }
// public void setRole(Role role) {
// this.role = role;
// }
}