| | |
| | | public class QuestionEditVO { |
| | | |
| | | private Integer id; |
| | | @ExcelImport("题型(单选:1)") |
| | | @ExcelImport("题型") |
| | | private String type; |
| | | // 1:单选 |
| | | @NotNull |
| | | private Integer questionType; |
| | | @ExcelImport("学科") |
| | | @ExcelImport("课目") |
| | | private String sbNames; |
| | | |
| | | private String subjectName; |
| | | // 年级学科表 |
| | | @NotNull |
| | | private Integer subjectId; |
| | |
| | | @ExcelImport("难度") |
| | | @Range(min = 1, max = 5, message = "请选择题目难度") |
| | | private Integer difficult; |
| | | @ExcelImport("年级") |
| | | @ExcelImport("部门") |
| | | private String department; |
| | | |
| | | private Integer gradeLevel; |
| | | |
| | | |
| | | @ExcelImport("选项A") |
| | | private String a; |
| | |
| | | @ExcelImport("选项D") |
| | | private String d; |
| | | |
| | | |
| | | public String getSbNames() { |
| | | return sbNames; |
| | | } |
| | | |
| | | public void setSbNames(String sbNames) { |
| | | this.sbNames = sbNames; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getSubjectName() { |
| | | |
| | | return subjectName; |
| | | } |
| | | |
| | | public void setSubjectName(String subjectName) { |
| | | this.subjectName = subjectName; |
| | | } |
| | | |
| | | public String getDepartment() { |
| | | return department; |
| | | } |
| | | |
| | | public void setDepartment(String department) { |
| | | this.department = department; |
| | | } |
| | | |
| | | public List<String> getCorrectArray() { |
| | | return correctArray; |
| | | } |