From b19d7869a20efec118e6e2b3384b43b53e3ffb27 Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期二, 14 五月 2024 17:28:11 +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