This commit is contained in:
alvis 2021-01-15 09:13:40 +08:00
parent 10b01a2e23
commit c29e36ca1f
9 changed files with 183 additions and 19 deletions

View File

@ -1,12 +1,34 @@
package com.mindskip.xzs.domain; package com.mindskip.xzs.domain;
import lombok.Data;
import java.util.List; import java.util.List;
@Data
public class ExamPaperAnswerInfo { public class ExamPaperAnswerInfo {
public ExamPaper examPaper; public ExamPaper examPaper;
public ExamPaperAnswer examPaperAnswer; public ExamPaperAnswer examPaperAnswer;
public List<ExamPaperQuestionCustomerAnswer> examPaperQuestionCustomerAnswers; public List<ExamPaperQuestionCustomerAnswer> examPaperQuestionCustomerAnswers;
public ExamPaper getExamPaper() {
return examPaper;
}
public void setExamPaper(ExamPaper examPaper) {
this.examPaper = examPaper;
}
public ExamPaperAnswer getExamPaperAnswer() {
return examPaperAnswer;
}
public void setExamPaperAnswer(ExamPaperAnswer examPaperAnswer) {
this.examPaperAnswer = examPaperAnswer;
}
public List<ExamPaperQuestionCustomerAnswer> getExamPaperQuestionCustomerAnswers() {
return examPaperQuestionCustomerAnswers;
}
public void setExamPaperQuestionCustomerAnswers(List<ExamPaperQuestionCustomerAnswer> examPaperQuestionCustomerAnswers) {
this.examPaperQuestionCustomerAnswers = examPaperQuestionCustomerAnswers;
}
} }

View File

@ -1,8 +1,5 @@
package com.mindskip.xzs.domain.exam; package com.mindskip.xzs.domain.exam;
import lombok.Data;
@Data
public class ExamPaperQuestionItemObject { public class ExamPaperQuestionItemObject {
private Integer id; private Integer id;
private Integer itemOrder; private Integer itemOrder;

View File

@ -1,13 +1,27 @@
package com.mindskip.xzs.domain.exam; package com.mindskip.xzs.domain.exam;
import lombok.Data;
import java.util.List; import java.util.List;
@Data
public class ExamPaperTitleItemObject { public class ExamPaperTitleItemObject {
private String name; private String name;
private List<ExamPaperQuestionItemObject> questionItems; private List<ExamPaperQuestionItemObject> questionItems;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<ExamPaperQuestionItemObject> getQuestionItems() {
return questionItems;
}
public void setQuestionItems(List<ExamPaperQuestionItemObject> questionItems) {
this.questionItems = questionItems;
}
} }

View File

@ -1,10 +1,32 @@
package com.mindskip.xzs.domain.other; package com.mindskip.xzs.domain.other;
import lombok.Data;
@Data
public class ExamPaperAnswerUpdate { public class ExamPaperAnswerUpdate {
private Integer id; private Integer id;
private Integer customerScore; private Integer customerScore;
private Boolean doRight; private Boolean doRight;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCustomerScore() {
return customerScore;
}
public void setCustomerScore(Integer customerScore) {
this.customerScore = customerScore;
}
public Boolean getDoRight() {
return doRight;
}
public void setDoRight(Boolean doRight) {
this.doRight = doRight;
}
} }

View File

@ -1,11 +1,24 @@
package com.mindskip.xzs.domain.other; package com.mindskip.xzs.domain.other;
import lombok.Data;
@Data
public class KeyValue { public class KeyValue {
private String name; private String name;
private Integer value; private Integer value;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
} }

View File

@ -1,8 +1,6 @@
package com.mindskip.xzs.domain.question; package com.mindskip.xzs.domain.question;
import lombok.Data;
@Data
public class QuestionItemObject { public class QuestionItemObject {
private String prefix; private String prefix;
@ -10,4 +8,28 @@ public class QuestionItemObject {
private String content; private String content;
private Integer score; private Integer score;
public String getPrefix() {
return prefix;
}
public void setPrefix(String prefix) {
this.prefix = prefix;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Integer getScore() {
return score;
}
public void setScore(Integer score) {
this.score = score;
}
} }

View File

@ -1,11 +1,9 @@
package com.mindskip.xzs.domain.question; package com.mindskip.xzs.domain.question;
import lombok.Data;
import java.util.List; import java.util.List;
@Data
public class QuestionObject { public class QuestionObject {
private String titleContent; private String titleContent;
@ -15,4 +13,36 @@ public class QuestionObject {
private List<QuestionItemObject> questionItemObjects; private List<QuestionItemObject> questionItemObjects;
private String correct; private String correct;
public String getTitleContent() {
return titleContent;
}
public void setTitleContent(String titleContent) {
this.titleContent = titleContent;
}
public String getAnalyze() {
return analyze;
}
public void setAnalyze(String analyze) {
this.analyze = analyze;
}
public List<QuestionItemObject> getQuestionItemObjects() {
return questionItemObjects;
}
public void setQuestionItemObjects(List<QuestionItemObject> questionItemObjects) {
this.questionItemObjects = questionItemObjects;
}
public String getCorrect() {
return correct;
}
public void setCorrect(String correct) {
this.correct = correct;
}
} }

View File

@ -1,8 +1,6 @@
package com.mindskip.xzs.domain.task; package com.mindskip.xzs.domain.task;
import lombok.Data;
@Data
public class TaskItemAnswerObject { public class TaskItemAnswerObject {
private Integer examPaperId; private Integer examPaperId;
private Integer examPaperAnswerId; private Integer examPaperAnswerId;
@ -17,4 +15,28 @@ public class TaskItemAnswerObject {
this.examPaperAnswerId = examPaperAnswerId; this.examPaperAnswerId = examPaperAnswerId;
this.status = status; this.status = status;
} }
public Integer getExamPaperId() {
return examPaperId;
}
public void setExamPaperId(Integer examPaperId) {
this.examPaperId = examPaperId;
}
public Integer getExamPaperAnswerId() {
return examPaperAnswerId;
}
public void setExamPaperAnswerId(Integer examPaperAnswerId) {
this.examPaperAnswerId = examPaperAnswerId;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
} }

View File

@ -1,10 +1,32 @@
package com.mindskip.xzs.domain.task; package com.mindskip.xzs.domain.task;
import lombok.Data;
@Data
public class TaskItemObject { public class TaskItemObject {
private Integer examPaperId; private Integer examPaperId;
private String examPaperName; private String examPaperName;
private Integer itemOrder; private Integer itemOrder;
public Integer getExamPaperId() {
return examPaperId;
}
public void setExamPaperId(Integer examPaperId) {
this.examPaperId = examPaperId;
}
public String getExamPaperName() {
return examPaperName;
}
public void setExamPaperName(String examPaperName) {
this.examPaperName = examPaperName;
}
public Integer getItemOrder() {
return itemOrder;
}
public void setItemOrder(Integer itemOrder) {
this.itemOrder = itemOrder;
}
} }