ChapterReq.java
704 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
package com.jevon.vo.req;
/**
* @author chen
* @version 1.0
* @date 2019/10/24 0024 8:55
*/
public class ChapterReq {
private int chapterNumber ;
private String chapterName ;
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;
}
}