From 3ec909b27b3eba956aa9d00cc7a94c179bd04bbf Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期三, 03 七月 2024 18:29:31 +0800 Subject: [PATCH] feat:新增随机时间题目配置 --- src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperPageRequestVM.java | 65 ++++++++++++++++++++++++++++++++ 1 files changed, 65 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperPageRequestVM.java b/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperPageRequestVM.java index cf501bb..be7a2b6 100644 --- a/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperPageRequestVM.java +++ b/src/main/java/com/mindskip/xzs/viewmodel/admin/exam/ExamPaperPageRequestVM.java @@ -2,6 +2,7 @@ import com.mindskip.xzs.base.BasePage; +import java.util.List; public class ExamPaperPageRequestVM extends BasePage { @@ -11,6 +12,22 @@ private Integer level; private Integer paperType; private Integer taskExamId; + private String type; + private Integer userId; + private String userName; + private String templatesName; + private Integer templatesId; + private String status; + + private List<Integer> deptIds; + + public List<Integer> getDeptIds() { + return deptIds; + } + + public void setDeptIds(List<Integer> deptIds) { + this.deptIds = deptIds; + } public Integer getId() { return id; @@ -51,4 +68,52 @@ public void setTaskExamId(Integer taskExamId) { this.taskExamId = taskExamId; } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getTemplatesName() { + return templatesName; + } + + public void setTemplatesName(String templatesName) { + this.templatesName = templatesName; + } + + public Integer getTemplatesId() { + return templatesId; + } + + public void setTemplatesId(Integer templatesId) { + this.templatesId = templatesId; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } } -- Gitblit v1.8.0