forked from cmzalvin/giit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddedBookVo.java
More file actions
41 lines (30 loc) · 776 Bytes
/
AddedBookVo.java
File metadata and controls
41 lines (30 loc) · 776 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
package com.giit.www.entity.custom;
import com.giit.www.entity.Section;
import java.util.List;
/**
* Created by c0de8ug on 16-2-15.
*/
//TODO命名风格有问题
public class AddedBookVo {
String secId;
String courseTitle;
public String getCourseTitle() {
return courseTitle;
}
public void setCourseTitle(String courseTitle) {
this.courseTitle = courseTitle;
}
List<BookInfo> bookInfoList;
public String getSecId() {
return secId;
}
public void setSecId(String secId) {
this.secId = secId;
}
public List<BookInfo> getBookInfoList() {
return bookInfoList;
}
public void setBookInfoList(List<BookInfo> bookInfoList) {
this.bookInfoList = bookInfoList;
}
}