package com.mindskip.xzs.viewmodel.admin.dashboard; import java.util.List; public class IndexVM { private Integer examPaperCount; private Integer questionCount; private Integer doExamPaperCount; private Integer doQuestionCount; private List mothDayUserActionValue; private List mothDayDoExamQuestionValue; private List mothDayText; public Integer getExamPaperCount() { return examPaperCount; } public void setExamPaperCount(Integer examPaperCount) { this.examPaperCount = examPaperCount; } public Integer getQuestionCount() { return questionCount; } public void setQuestionCount(Integer questionCount) { this.questionCount = questionCount; } public Integer getDoExamPaperCount() { return doExamPaperCount; } public void setDoExamPaperCount(Integer doExamPaperCount) { this.doExamPaperCount = doExamPaperCount; } public Integer getDoQuestionCount() { return doQuestionCount; } public void setDoQuestionCount(Integer doQuestionCount) { this.doQuestionCount = doQuestionCount; } public List getMothDayUserActionValue() { return mothDayUserActionValue; } public void setMothDayUserActionValue(List mothDayUserActionValue) { this.mothDayUserActionValue = mothDayUserActionValue; } public List getMothDayDoExamQuestionValue() { return mothDayDoExamQuestionValue; } public void setMothDayDoExamQuestionValue(List mothDayDoExamQuestionValue) { this.mothDayDoExamQuestionValue = mothDayDoExamQuestionValue; } public List getMothDayText() { return mothDayText; } public void setMothDayText(List mothDayText) { this.mothDayText = mothDayText; } }