forked from cmzalvin/giit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpec.java
More file actions
52 lines (41 loc) · 917 Bytes
/
Spec.java
File metadata and controls
52 lines (41 loc) · 917 Bytes
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
package com.giit.www.entity;
/**
* Created by c0de8ug on 16-2-9.
*/
public class Spec {
int specId;
String deptName;
String specName;
String year;
String semester;
public int getSpecId() {
return specId;
}
public void setSpecId(int specId) {
this.specId = specId;
}
public String getDeptName() {
return deptName;
}
public void setDeptName(String deptName) {
this.deptName = deptName;
}
public String getSpecName() {
return specName;
}
public void setSpecName(String specName) {
this.specName = specName;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public String getSemester() {
return semester;
}
public void setSemester(String semester) {
this.semester = semester;
}
}