-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudent.java
More file actions
82 lines (79 loc) · 1.32 KB
/
Student.java
File metadata and controls
82 lines (79 loc) · 1.32 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
package students;
public class Student
{
private String stuNo;//学号
private String stuName;//姓名
private String stuAge;//年龄
private String stuSex;//性别
private String stuDepartment;//系别
private String stuPhone;//电话
private String stuEmail;//e mail
private String stuHistory;//简历
public Student()
{
}
public String getStuNo()
{
return stuNo;
}
public void setStuNo(String stuNo)
{
this.stuNo=stuNo;
}
public String getStuName()
{
return stuName;
}
public void setStuName(String stuName)
{
this.stuName=stuName;
}
public String getStuAge()
{
return stuAge;
}
public void setStuAge(String stuAge)
{
this.stuAge=stuAge;
}
public String getStuSex()
{
return stuSex;
}
public void setStuSex(String stuSex)
{
this.stuSex=stuSex;
}
public String getStuDepartment()
{
return stuDepartment;
}
public void setStuDepartment(String stuDepartment)
{
this.stuDepartment=stuDepartment;
}
public String getStuPhone()
{
return stuPhone;
}
public void setStuPhone(String stuPhone)
{
this.stuPhone=stuPhone;
}
public String getStuEmail()
{
return stuEmail;
}
public void setStuEmail(String stuEmail)
{
this.stuEmail=stuEmail;
}
public String getStuHistory()
{
return stuHistory;
}
public void setStuHistory(String stuHistory)
{
this.stuHistory=stuHistory;
}
}