package com.mindskip.xzs.viewmodel.student.question.answer;
|
|
|
public class QuestionPageStudentResponseVM {
|
private Integer id;
|
|
private Integer questionType;
|
|
private String createTime;
|
|
private String subjectName;
|
|
private String shortTitle;
|
|
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 String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getSubjectName() {
|
return subjectName;
|
}
|
|
public void setSubjectName(String subjectName) {
|
this.subjectName = subjectName;
|
}
|
|
public String getShortTitle() {
|
return shortTitle;
|
}
|
|
public void setShortTitle(String shortTitle) {
|
this.shortTitle = shortTitle;
|
}
|
}
|