From 6c12bcfde3b2d5c910ed1b11112442237021ac09 Mon Sep 17 00:00:00 2001 From: qirong <2032486488@qq.com> Date: 星期日, 16 七月 2023 10:01:38 +0800 Subject: [PATCH] 随机试卷修改 --- src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperEditRequestVM.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 52 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperEditRequestVM.java b/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperEditRequestVM.java index 8300db8..ef49889 100644 --- a/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperEditRequestVM.java +++ b/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperEditRequestVM.java @@ -10,6 +10,7 @@ import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import java.util.List; +import java.util.Map; public class ExamPaperEditRequestVM { @@ -35,6 +36,18 @@ //閮ㄩ棬ids private Integer[] departmentIds; + + private Integer[] userIds; + + private Map<Integer,Integer> subjectSource; + + //闅忔満璇曞嵎鍚勪釜鏍囩棰樺瀷鏁伴噺 + private List<QuestionTypeVM> questionTypeVMS; + + private Integer aggregateSource; + + private Integer[][] userId; + public Integer getId() { @@ -117,4 +130,43 @@ this.departmentIds = departmentIds; } + public Map<Integer, Integer> getSubjectSource() { + return subjectSource; + } + + public void setSubjectSource(Map<Integer, Integer> subjectSource) { + this.subjectSource = subjectSource; + } + + public Integer getAggregateSource() { + return aggregateSource; + } + + public void setAggregateSource(Integer aggregateSource) { + this.aggregateSource = aggregateSource; + } + + public List<QuestionTypeVM> getQuestionTypeVMS() { + return questionTypeVMS; + } + + public void setQuestionTypeVMS(List<QuestionTypeVM> questionTypeVMS) { + this.questionTypeVMS = questionTypeVMS; + } + + public Integer[] getUserIds() { + return userIds; + } + + public void setUserIds(Integer[] userIds) { + this.userIds = userIds; + } + + public Integer[][] getUserId() { + return userId; + } + + public void setUserId(Integer[][] userId) { + this.userId = userId; + } } -- Gitblit v1.8.0