From 065f6d3555d4125b6045ca2bb66d38030ba125a9 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期一, 15 七月 2024 09:03:39 +0800
Subject: [PATCH] 统计导出(待测试)
---
src/main/java/com/mindskip/xzs/viewmodel/admin/question/QuestionResponseVM.java | 101 +++-----------------------------------------------
1 files changed, 7 insertions(+), 94 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 d019a42..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
@@ -1,9 +1,12 @@
package com.mindskip.xzs.viewmodel.admin.question;
+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;
@@ -30,99 +33,9 @@
private String shortTitle;
- public Integer getId() {
- return id;
- }
+ private List<QuestionSubject> questionSubjects;
- public void setId(Integer id) {
- this.id = id;
- }
+ /** 鎵�灞為儴闂ㄥ悕瀛� */
+ private String deptNames;
- 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;
- }
}
--
Gitblit v1.8.0