| | |
| | | @ExcelProperty("题目类型") |
| | | private String questionType; |
| | | |
| | | @ExcelProperty("课目(多个用、隔开)") |
| | | @ExcelProperty("课目(多个用,隔开)") |
| | | private String subjectName; |
| | | |
| | | @ExcelIgnore |
| | |
| | | private String questionContent; |
| | | |
| | | // 选项内容 |
| | | @ExcelProperty({"题目选项", "选项"}) |
| | | private String optionName; |
| | | @ExcelProperty("选项A") |
| | | private String optionA; |
| | | |
| | | @ExcelProperty({"题目选项", "选项值"}) |
| | | private String optionValue; |
| | | @ExcelProperty("选项B") |
| | | private String optionB; |
| | | |
| | | @ExcelProperty("答案(多个用、隔开)") |
| | | @ExcelProperty("选项C") |
| | | private String optionC; |
| | | |
| | | @ExcelProperty("选项D") |
| | | private String optionD; |
| | | |
| | | @ExcelProperty("答案(多个用,隔开)") |
| | | private String correct; |
| | | |
| | | // 解析 |
| | |
| | | |
| | | // 题目分数 |
| | | @ExcelProperty("题目分数") |
| | | private Integer score; |
| | | private String score; |
| | | |
| | | // 题目难度 |
| | | @ExcelProperty("题目难度") |