-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathPersonalInformation.java
More file actions
83 lines (59 loc) · 1.48 KB
/
PersonalInformation.java
File metadata and controls
83 lines (59 loc) · 1.48 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.codejam.demo.pojo;
import javax.persistence.*;
@Entity
@Table(name = "PERSONAL_INFORMATION")
public class PersonalInformation {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Column(name = "real_name")
private String real_name;
@Column(name = "idol_name")
private String idol_name;
@Column(name = "address")
private String address;
@Column(name = "idol_status")
private String idol_status;
public PersonalInformation() {
super();
// TODO Auto-generated constructor stub
}
public PersonalInformation(Integer id, String real_name, String idol_name, String address, String idol_status) {
super();
this.id = id;
this.real_name = real_name;
this.idol_name = idol_name;
this.address = address;
this.idol_status = idol_status;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getReal_name() {
return real_name;
}
public void setReal_name(String real_name) {
this.real_name = real_name;
}
public String getIdol_name() {
return idol_name;
}
public void setIdol_name(String idol_name) {
this.idol_name = idol_name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getIdol_status() {
return idol_status;
}
public void setIdol_status(String idol_status) {
this.idol_status = idol_status;
}
}