Form7RepVO.java
1.96 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
82
83
84
85
86
87
package com.jevon.vo.school;
import com.jevon.model.Chapter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.List;
/**
* @author chen
* @version 1.0
* @date 2019/10/24 0024 9:20
*/
@ApiModel
public class Form7RepVO {
@ApiModelProperty(value = "举例七年级上册")
private String examScope ;
@ApiModelProperty(value = "科目")
private String courseName ;
@ApiModelProperty(value = "满分")
private Double maxScore ;
@ApiModelProperty(value = "考试时长")
private String examTime ;
@ApiModelProperty(value = "章节列表对应分值")
private List<Chapter> list ;
@ApiModelProperty(value = "难度列表对应分值")
private List<Form7> difficultList ;
@ApiModelProperty(value = "题型类型对应分值")
private List<Form7> typeList ;
public String getExamScope() {
return examScope;
}
public void setExamScope(String examScope) {
this.examScope = examScope;
}
public String getCourseName() {
return courseName;
}
public void setCourseName(String courseName) {
this.courseName = courseName;
}
public List<Chapter> getList() {
return list;
}
public void setList(List<Chapter> list) {
this.list = list;
}
public List<Form7> getDifficultList() {
return difficultList;
}
public void setDifficultList(List<Form7> difficultList) {
this.difficultList = difficultList;
}
public List<Form7> getTypeList() {
return typeList;
}
public void setTypeList(List<Form7> typeList) {
this.typeList = typeList;
}
public Double getMaxScore() {
return maxScore;
}
public void setMaxScore(Double maxScore) {
this.maxScore = maxScore;
}
public String getExamTime() {
return examTime;
}
public void setExamTime(String examTime) {
this.examTime = examTime;
}
}