package com.mindskip.xzs.viewmodel.admin.exam;
|
|
import java.io.Serializable;
|
|
/**
|
* 随机试卷题型数量
|
*/
|
public class QuestionTypeVM implements Serializable {
|
|
//题目id
|
private Integer subjectId;
|
|
private String label;
|
|
//单选题
|
private Integer singleChoice;
|
|
//多选题
|
private Integer multipleChoice;
|
|
//判断题
|
private Integer trueFalse;
|
|
public Integer getSubjectId() {
|
return subjectId;
|
}
|
|
public void setSubjectId(Integer subjectId) {
|
this.subjectId = subjectId;
|
}
|
|
public Integer getSingleChoice() {
|
return singleChoice;
|
}
|
|
public void setSingleChoice(Integer singleChoice) {
|
this.singleChoice = singleChoice;
|
}
|
|
public Integer getMultipleChoice() {
|
return multipleChoice;
|
}
|
|
public void setMultipleChoice(Integer multipleChoice) {
|
this.multipleChoice = multipleChoice;
|
}
|
|
public Integer getTrueFalse() {
|
return trueFalse;
|
}
|
|
public void setTrueFalse(Integer trueFalse) {
|
this.trueFalse = trueFalse;
|
}
|
|
public String getLabel() {
|
return label;
|
}
|
|
public void setLabel(String label) {
|
this.label = label;
|
}
|
}
|