【新增】word、excel判分考点

This commit is contained in:
huababa1
2025-08-13 20:42:03 +08:00
parent 35c5eb088a
commit 3da4eaa21a
30 changed files with 9368 additions and 248 deletions

View File

@@ -78,6 +78,9 @@ public class ExamWpsXlsxController {
@GetMapping("/getByNameList")
public CommonResult<List<XlsxRespVO>> getXlsxByNameList(@RequestParam("title") String title) {
ExamWpsXlsx xlsx = examWpsXlsxService.getXlsxByTitle(title);
if (xlsx==null){
return success(null );
}
return success(BeanUtils.toBean(examWpsXlsxService.getChildXlsxList(xlsx.getId()), XlsxRespVO.class));
}
}