-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEspStudent.java
123 lines (96 loc) · 2.6 KB
/
EspStudent.java
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import java.io.Serializable;
import java.util.List;
import java.util.Date;
public class EspStudent implements Serializable {
private String name;
private Date birthDate;
private String house;
private String counselor;
private String building;
private String gender;
private String calendar;
private String homeroom;
private int grade;
private String language;
private String homeroomTeacher;
private List<EspTransportation> transportation;
private List<EspContact> contacts;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Date getBirthDate() {
return this.birthDate;
}
public void setBirthDate(Date birthDate) {
this.birthDate = birthDate;
}
public String getHouse() {
return this.house;
}
public void setHouse(String house) {
this.house = house;
}
public String getCounselor() {
return this.counselor;
}
public void setCounselor(String counselor) {
this.counselor = counselor;
}
public String getBuilding() {
return this.building;
}
public void setBuilding(String building) {
this.building = building;
}
public String getGender() {
return this.gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getCalendar() {
return this.calendar;
}
public void setCalendar(String calendar) {
this.calendar = calendar;
}
public String getHomeroom() {
return this.homeroom;
}
public void setHomeroom(String homeroom) {
this.homeroom = homeroom;
}
public int getGrade() {
return this.grade;
}
public void setGrade(int grade) {
this.grade = grade;
}
public String getLanguage() {
return this.language;
}
public void setLanguage(String language) {
this.language = language;
}
public String getHomeroomTeacher() {
return this.homeroomTeacher;
}
public void setHomeroomTeacher(String homeroomTeacher) {
this.homeroomTeacher = homeroomTeacher;
}
public List<EspTransportation> getTransportation() {
return this.transportation;
}
public void setTransportation(List<EspTransportation> transportation) {
this.transportation = transportation;
}
public List<EspContact> getContacts() {
return this.contacts;
}
public void setContacts(List<EspContact> contacts) {
this.contacts = contacts;
}
}