forked from cmzalvin/giit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.java
More file actions
97 lines (76 loc) · 1.88 KB
/
Student.java
File metadata and controls
97 lines (76 loc) · 1.88 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.giit.www.entity;
/**
* Created by c0de8ug on 16-2-9.
*/
public class Student {
String studentId;
String password;
String studentName;
String idCard;
String year;
String className;
String telephoneNumber;
String studentOriginBase;
String gender;
String picPath;
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getStudentId() {
return studentId;
}
public void setStudentId(String studentId) {
this.studentId = studentId;
}
public String getStudentName() {
return studentName;
}
public void setStudentName(String studentName) {
this.studentName = studentName;
}
public String getIdCard() {
return idCard;
}
public void setIdCard(String idCard) {
this.idCard = idCard;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public String getTelephoneNumber() {
return telephoneNumber;
}
public void setTelephoneNumber(String telephoneNumber) {
this.telephoneNumber = telephoneNumber;
}
public String getStudentOriginBase() {
return studentOriginBase;
}
public void setStudentOriginBase(String studentOriginBase) {
this.studentOriginBase = studentOriginBase;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getPicPath() {
return picPath;
}
public void setPicPath(String picPath) {
this.picPath = picPath;
}
}