From f3ee8bfce84146993410987a26f65ee6d0eb95f1 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期三, 22 五月 2024 12:02:14 +0800
Subject: [PATCH] 题目绑定部门

---
 src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionResponseVM.java |  107 ++---------------------------------------------------
 1 files changed, 4 insertions(+), 103 deletions(-)

diff --git a/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionResponseVM.java b/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionResponseVM.java
index a0f7413..4a51153 100644
--- a/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionResponseVM.java
+++ b/src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionResponseVM.java
@@ -2,10 +2,11 @@
 
 import com.mindskip.xzs.domain.QuestionSubject;
 import com.mindskip.xzs.viewmodel.BaseVM;
+import lombok.Data;
 
 import java.util.List;
 
-
+@Data
 public class QuestionResponseVM extends BaseVM {
 
     private Integer id;
@@ -34,107 +35,7 @@
 
     private List<QuestionSubject> questionSubjects;
 
-    public Integer getId() {
-        return id;
-    }
+    /** 鎵�灞為儴闂ㄥ悕瀛� */
+    private String deptNames;
 
-    public void setId(Integer id) {
-        this.id = id;
-    }
-
-    public Integer getQuestionType() {
-        return questionType;
-    }
-
-    public void setQuestionType(Integer questionType) {
-        this.questionType = questionType;
-    }
-
-    public Integer getTextContentId() {
-        return textContentId;
-    }
-
-    public void setTextContentId(Integer textContentId) {
-        this.textContentId = textContentId;
-    }
-
-    public String getCreateTime() {
-        return createTime;
-    }
-
-    public void setCreateTime(String createTime) {
-        this.createTime = createTime;
-    }
-
-    public Integer getSubjectId() {
-        return subjectId;
-    }
-
-    public void setSubjectId(Integer subjectId) {
-        this.subjectId = subjectId;
-    }
-
-    public Integer getCreateUser() {
-        return createUser;
-    }
-
-    public void setCreateUser(Integer createUser) {
-        this.createUser = createUser;
-    }
-
-    public String getScore() {
-        return score;
-    }
-
-    public void setScore(String score) {
-        this.score = score;
-    }
-
-    public Integer getStatus() {
-        return status;
-    }
-
-    public void setStatus(Integer status) {
-        this.status = status;
-    }
-
-    public String getCorrect() {
-        return correct;
-    }
-
-    public void setCorrect(String correct) {
-        this.correct = correct;
-    }
-
-    public Integer getAnalyzeTextContentId() {
-        return analyzeTextContentId;
-    }
-
-    public void setAnalyzeTextContentId(Integer analyzeTextContentId) {
-        this.analyzeTextContentId = analyzeTextContentId;
-    }
-
-    public Integer getDifficult() {
-        return difficult;
-    }
-
-    public void setDifficult(Integer difficult) {
-        this.difficult = difficult;
-    }
-
-    public String getShortTitle() {
-        return shortTitle;
-    }
-
-    public void setShortTitle(String shortTitle) {
-        this.shortTitle = shortTitle;
-    }
-
-    public List<QuestionSubject> getQuestionSubjects() {
-        return questionSubjects;
-    }
-
-    public void setQuestionSubjects(List<QuestionSubject> questionSubjects) {
-        this.questionSubjects = questionSubjects;
-    }
 }

--
Gitblit v1.8.0