|
@@ -57,7 +57,7 @@ public class MarkArchiveController {
|
|
|
|
|
|
@ApiOperation(value = "总量分析(导出)")
|
|
@ApiOperation(value = "总量分析(导出)")
|
|
@RequestMapping(value = "score/list/export", method = RequestMethod.POST)
|
|
@RequestMapping(value = "score/list/export", method = RequestMethod.POST)
|
|
- public Result scoreListExport(@Validated ArchiveScoreQuery query,HttpServletResponse response) throws IOException {
|
|
|
|
|
|
+ public Result scoreListExport(@Validated ArchiveScoreQuery query, HttpServletResponse response) throws IOException {
|
|
markPaperService.scoreListExport(query, response);
|
|
markPaperService.scoreListExport(query, response);
|
|
return ResultUtil.ok();
|
|
return ResultUtil.ok();
|
|
}
|
|
}
|
|
@@ -84,8 +84,8 @@ public class MarkArchiveController {
|
|
|
|
|
|
@ApiOperation(value = "成绩报告导出")
|
|
@ApiOperation(value = "成绩报告导出")
|
|
@RequestMapping(value = "/score/report/download", method = RequestMethod.POST)
|
|
@RequestMapping(value = "/score/report/download", method = RequestMethod.POST)
|
|
- public void scoreReportDownload(MultipartFile file, HttpServletResponse response) {
|
|
|
|
- markStudentService.scoreReportDownload(file, response);
|
|
|
|
|
|
+ public Result scoreReportDownload(ArchiveStudentQuery query, MultipartFile file, HttpServletResponse response) {
|
|
|
|
+ return ResultUtil.success(markStudentService.scoreReportDownload(query, file, response));
|
|
}
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "成绩报告")
|
|
@ApiOperation(value = "成绩报告")
|