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; } }