ChapterReqVo.java
895 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
package com.jevon.vo.req;
import java.util.List;
/**
* @author chen
* @version 1.0
* @date 2019/10/24 0024 8:53
*/
public class ChapterReqVo {
private int analyseId ;
private String examTime ;
private String examScope ;
private List<ChapterReq> list ;
public int getAnalyseId() {
return analyseId;
}
public void setAnalyseId(int analyseId) {
this.analyseId = analyseId;
}
public String getExamTime() {
return examTime;
}
public void setExamTime(String examTime) {
this.examTime = examTime;
}
public String getExamScope() {
return examScope;
}
public void setExamScope(String examScope) {
this.examScope = examScope;
}
public List<ChapterReq> getList() {
return list;
}
public void setList(List<ChapterReq> list) {
this.list = list;
}
}