|
@@ -877,4 +877,13 @@ public class CommonController extends BaseController {
|
|
|
iCertificateTpService.makeBatchCertificatePhoto(bo);
|
|
iCertificateTpService.makeBatchCertificatePhoto(bo);
|
|
|
return AjaxResult.success();
|
|
return AjaxResult.success();
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation("导入二建精选题目Word模板列表")
|
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('system:question:import')")
|
|
|
|
|
+ @PostMapping("/common/free/importErJianWordQuestionList")
|
|
|
|
|
+ public AjaxResult<Map<String,Object>> importErJianWordQuestionList(MultipartFile file, Long eduId, Long projectId, Long businessId, Long subjectId) throws Exception
|
|
|
|
|
+ {
|
|
|
|
|
+ Map<String,Object> result = iQuestionService.importErJianWordQuestionList(file, eduId, projectId, businessId, subjectId);
|
|
|
|
|
+ return AjaxResult.success(result);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|