From 0c29b611124679e564f2e5bd63f10f8c8ac0ba81 Mon Sep 17 00:00:00 2001
From: 17808 <1780814303@qq.com>
Date: 星期四, 09 十一月 2023 12:09:22 +0800
Subject: [PATCH] 成绩统计后端

---
 src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperEditRequestVM.java |   44 ++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 40 insertions(+), 4 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 8659e60..6aa2aa5 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
@@ -1,10 +1,6 @@
 package com.mindskip.xzs.viewmodel.admin.exam;
 
 
-
-import com.mindskip.xzs.domain.ExamPaperDepartment;
-import com.mindskip.xzs.domain.ExamPaperSubject;
-
 import javax.validation.Valid;
 import javax.validation.constraints.NotBlank;
 import javax.validation.constraints.NotNull;
@@ -37,9 +33,17 @@
     //閮ㄩ棬ids
     private Integer[] departmentIds;
 
+    private Integer[] userIds;
+
     private Map<Integer,Integer> subjectSource;
 
+    //闅忔満璇曞嵎鍚勪釜鏍囩棰樺瀷鏁伴噺
+    private List<QuestionTypeVM> questionTypeVMS;
+
     private Integer aggregateSource;
+
+    private Integer[][] userId;
+    private String type;
 
 
 
@@ -138,4 +142,36 @@
     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;
+    }
+
+    public String getType() {
+        return type;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
 }

--
Gitblit v1.8.0