From 8f128cdf03c1aea60535305d51f5536e9aef83a6 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期二, 16 七月 2024 10:42:20 +0800
Subject: [PATCH] feat:管理员打标签、只统计参考的部门
---
src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionPageRequestVM.java | 47 ++++++-----------------------------------------
1 files changed, 6 insertions(+), 41 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..5eff112 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
@@ -1,55 +1,20 @@
package com.mindskip.xzs.viewmodel.admin.question;
import com.mindskip.xzs.base.BasePage;
+import lombok.Data;
-
+@Data
public class QuestionPageRequestVM extends BasePage {
private Integer id;
private Integer level;
- private Integer subjectId;
+ private Integer[] subjectId;
private Integer questionType;
private String content;
+ private String questionName;
+
+ private String titleContent;
- public Integer getId() {
- return id;
- }
-
- public void setId(Integer id) {
- this.id = id;
- }
-
- public Integer getLevel() {
- return level;
- }
-
- public void setLevel(Integer level) {
- this.level = level;
- }
-
- public Integer getSubjectId() {
- return subjectId;
- }
-
- public void setSubjectId(Integer subjectId) {
- this.subjectId = subjectId;
- }
-
- public Integer getQuestionType() {
- return questionType;
- }
-
- public void setQuestionType(Integer questionType) {
- this.questionType = questionType;
- }
-
- public String getContent() {
- return content;
- }
-
- public void setContent(String content) {
- this.content = content;
- }
}
--
Gitblit v1.8.0