|
@@ -67,8 +67,8 @@ public class ExtractConfigController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "根据调卷规则生成试卷", notes = "根据调卷规则生成试卷")
|
|
|
- @PutMapping(value = "/makePaperByConfig")
|
|
|
- public ResponseEntity makePaperByConfig(String id){
|
|
|
+ @PutMapping(value = "/makePaperByConfig/{id}")
|
|
|
+ public ResponseEntity makePaperByConfig(@PathVariable String id){
|
|
|
try{
|
|
|
extractConfigService.makePaperByConfig(id);
|
|
|
return new ResponseEntity(HttpStatus.OK);
|