龚焕茏
2024-07-03 3ec909b27b3eba956aa9d00cc7a94c179bd04bbf
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;
    }