From c25d93c39975f84ca411da16b82ab556648a50e0 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期三, 22 五月 2024 15:21:44 +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