ChapterReqVo.java 895 Bytes
package com.jevon.vo.req;

import java.util.List;

/**
 * @author chen
 * @version 1.0
 * @date 2019/10/24 0024 8:53
 */
public class ChapterReqVo {

    private int analyseId ;
    private String examTime ;
    private String examScope ;
    private List<ChapterReq> 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<ChapterReq> getList() {
        return list;
    }

    public void setList(List<ChapterReq> list) {
        this.list = list;
    }
}