From b236dd0d61a9130a842425d7c7d63cb9910ba8be Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期二, 14 五月 2024 10:09:47 +0800
Subject: [PATCH] feat:部门调动
---
src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionPageRequestVM.java | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
diff --git a/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionPageRequestVM.java b/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionPageRequestVM.java
index ab1d129..86f31d7 100644
--- a/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionPageRequestVM.java
+++ b/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionPageRequestVM.java
@@ -8,9 +8,10 @@
private Integer id;
private Integer level;
- private Integer subjectId;
+ private Integer[] subjectId;
private Integer questionType;
private String content;
+ private String questionName;
public Integer getId() {
@@ -29,11 +30,11 @@
this.level = level;
}
- public Integer getSubjectId() {
+ public Integer[] getSubjectId() {
return subjectId;
}
- public void setSubjectId(Integer subjectId) {
+ public void setSubjectId(Integer[] subjectId) {
this.subjectId = subjectId;
}
@@ -52,4 +53,12 @@
public void setContent(String content) {
this.content = content;
}
+
+ public String getQuestionName() {
+ return questionName;
+ }
+
+ public void setQuestionName(String questionName) {
+ this.questionName = questionName;
+ }
}
--
Gitblit v1.8.0