xiatian 2 years ago
parent
commit
1bf17e60db
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/cn/com/qmth/mps/controller/PaperController.java

+ 2 - 2
src/main/java/cn/com/qmth/mps/controller/PaperController.java

@@ -119,13 +119,13 @@ public class PaperController extends BaseController {
 	}
 
 	@ApiOperation(value = "试卷结构提交")
-	@RequestMapping(value = "struct/submit ", method = RequestMethod.POST)
+	@RequestMapping(value = "struct/submit", method = RequestMethod.POST)
 	public void structSubmit(@RequestBody StructDomain domain) {
 		paperDetailService.structSubmit(domain,getAccessUser());
 	}
 
 	@ApiOperation(value = "试卷结构暂存")
-	@RequestMapping(value = "struct/save ", method = RequestMethod.POST)
+	@RequestMapping(value = "struct/save", method = RequestMethod.POST)
 	public void structSave(@RequestBody StructDomain domain) {
 		paperDetailService.structSave(domain,getAccessUser());
 	}