ChapterReq.java
942 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
package com.jevon.vo.req;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* @author chen
* @version 1.0
* @date 2019/10/24 0024 8:55
*/
@ApiModel
public class ChapterReq {
@ApiModelProperty(value = "考试章节")
private int chapterNumber ;
@ApiModelProperty(value = "章节名称")
private String chapterName ;
@ApiModelProperty(value = "章节 分值")
private Double score ;
public int getChapterNumber() {
return chapterNumber;
}
public void setChapterNumber(int chapterNumber) {
this.chapterNumber = chapterNumber;
}
public String getChapterName() {
return chapterName;
}
public void setChapterName(String chapterName) {
this.chapterName = chapterName;
}
public Double getScore() {
return score;
}
public void setScore(Double score) {
this.score = score;
}
}