ChapterReq.java 704 Bytes
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;
    }
}