From 10ca479bf55120b338f9d2c6b1e3100190b5a035 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 30 五月 2024 09:36:22 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 src/main/java/com/mindskip/xzs/viewmodel/student/dashboard/PaperFilter.java |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/mindskip/xzs/viewmodel/student/dashboard/PaperFilter.java b/src/main/java/com/mindskip/xzs/viewmodel/student/dashboard/PaperFilter.java
index edbb733..e3fb3a6 100644
--- a/src/main/java/com/mindskip/xzs/viewmodel/student/dashboard/PaperFilter.java
+++ b/src/main/java/com/mindskip/xzs/viewmodel/student/dashboard/PaperFilter.java
@@ -1,15 +1,19 @@
 package com.mindskip.xzs.viewmodel.student.dashboard;
 
 
+import org.joda.time.DateTime;
+
+import java.time.LocalDateTime;
 import java.util.Date;
 
 public class PaperFilter {
     private Integer userId;
     private Date dateTime;
-    private Integer examPaperType;
+    private Integer[] examPaperType;
     private Integer gradeLevel;
 
     private Integer subjectId;
+
 
     public Integer getUserId() {
         return userId;
@@ -27,11 +31,11 @@
         this.dateTime = dateTime;
     }
 
-    public Integer getExamPaperType() {
+    public Integer[] getExamPaperType() {
         return examPaperType;
     }
 
-    public void setExamPaperType(Integer examPaperType) {
+    public void setExamPaperType(Integer[] examPaperType) {
         this.examPaperType = examPaperType;
     }
 

--
Gitblit v1.8.0