Commit 83565782 by “Kongxiangkun”

测试管理-题库试题导入问题修改

parent 89b7341a
......@@ -27,7 +27,7 @@ public class ExamImportController {
private QuestionSubjectImport qs;
@Autowired
private LibrarySubjectImport ls;
private LibrarySubjectImport librarySubjectImport;
@ApiOperation("题库试题导入")
@PostMapping("/question/subject/import")
......@@ -47,7 +47,7 @@ public class ExamImportController {
map.put("libraryId",importVO.getId());
map.put("url",importVO.getUrl());
log.info("题目导入入参:{}", JSONUtil.toJsonStr(map));
ls.execute(map, true);
librarySubjectImport.execute(map, false);
return Response.ok();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment