From 983a2d36e9d3ca4ff2da89bbaca687fc55e92610 Mon Sep 17 00:00:00 2001 From: qirong <2032486488@qq.com> Date: 星期二, 20 六月 2023 09:22:54 +0800 Subject: [PATCH] 随机试卷 --- src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperEditRequestVM.java | 21 +++++++++++++++++++++ 1 files changed, 21 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..8659e60 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,11 @@ //閮ㄩ棬ids private Integer[] departmentIds; + + private Map<Integer,Integer> subjectSource; + + private Integer aggregateSource; + public Integer getId() { @@ -117,4 +123,19 @@ 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; + } } -- Gitblit v1.8.0