题库导入修改

This commit is contained in:
pengjie 2024-06-02 17:53:08 +08:00
parent 7eb4f3a1b4
commit 583806972a
2 changed files with 3 additions and 3 deletions

View File

@ -362,7 +362,7 @@ public class ExamQuestionBankController {
//导出文件名称
mv.addObject(NormalExcelConstants.FILE_NAME, "题目管理列表");
mv.addObject(NormalExcelConstants.CLASS, ExamQuestionBankImport.class);
mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("题目管理列表数据", "导出人:Jeecg", "导出信息"));
mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("题目管理列表数据", "导出人:" + SecurityUtils.getUser().getRealName(), "导出信息"));
mv.addObject(NormalExcelConstants.DATA_LIST, resultList);
return mv;
}

View File

@ -21,8 +21,8 @@ public class ExamQuestionBankImport {
@ApiModelProperty(value = "试题名称/选项描述")
private String questionName;
@Excel(name = "试题类型(单选题;多选题;填空题;)", width = 15)
@ApiModelProperty(value = "试题类型(单选题;多选题;填空题;)")
@Excel(name = "试题类型(单选题;多选题;)", width = 15)
@ApiModelProperty(value = "试题类型(单选题;多选题;)")
private String typeName;
@Excel(name = "难易程度", width = 15)