package com.jevon.vo.req; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.util.List; /** * @author chen * @version 1.0 * @date 2019/10/24 0024 8:53 */ @ApiModel public class ChapterReqVo { private int analyseId ; @ApiModelProperty(value = "考试时长") private String examTime ; @ApiModelProperty(value = "考试范围 七年级上册") private String examScope ; @ApiModelProperty(value = "满分") private Double maxScore ; @ApiModelProperty(value = "考试内容") private List list ; public int getAnalyseId() { return analyseId; } public void setAnalyseId(int analyseId) { this.analyseId = analyseId; } public String getExamTime() { return examTime; } public void setExamTime(String examTime) { this.examTime = examTime; } public String getExamScope() { return examScope; } public void setExamScope(String examScope) { this.examScope = examScope; } public List getList() { return list; } public void setList(List list) { this.list = list; } public Double getMaxScore() { return maxScore; } public void setMaxScore(Double maxScore) { this.maxScore = maxScore; } }