forked from cmzalvin/giit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCourse.java
More file actions
43 lines (34 loc) · 792 Bytes
/
Course.java
File metadata and controls
43 lines (34 loc) · 792 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
package com.giit.www.entity;
/**
* Created by c0de8ug on 16-2-9.
*/
public class Course {
String courseTitle;
String type;
String speciality;
float credits;
public String getCourseTitle() {
return courseTitle;
}
public void setCourseTitle(String courseTitle) {
this.courseTitle = courseTitle;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getSpeciality() {
return speciality;
}
public void setSpeciality(String speciality) {
this.speciality = speciality;
}
public float getCredits() {
return credits;
}
public void setCredits(float credits) {
this.credits = credits;
}
}