package com.mindskip.xzs.viewmodel.admin.question;
|
|
import com.mindskip.xzs.domain.QuestionSubject;
|
import com.mindskip.xzs.viewmodel.BaseVM;
|
|
import java.util.List;
|
|
|
public class QuestionResponseVM extends BaseVM {
|
|
private Integer id;
|
|
private Integer questionType;
|
|
private Integer textContentId;
|
|
private String createTime;
|
|
private Integer subjectId;
|
|
private Integer createUser;
|
|
private String score;
|
|
private Integer status;
|
|
private String correct;
|
|
private Integer analyzeTextContentId;
|
|
private Integer difficult;
|
|
private String shortTitle;
|
|
private List<QuestionSubject> questionSubjects;
|
|
public Integer getId() {
|
return id;
|
}
|
|
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;
|
}
|
}
|