|
@@ -4,7 +4,7 @@ import javax.transaction.Transactional;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
@@ -43,7 +43,7 @@ public class CopyExamStudentController extends ControllerSupport {
|
|
|
ExamCloudService examCloudService;
|
|
|
|
|
|
@ApiOperation(value = "添加考生复制任务")
|
|
|
- @GetMapping("addCopyTask")
|
|
|
+ @PostMapping("addCopyTask")
|
|
|
public void addCopyTask(@RequestParam(required = true) Long examId1,
|
|
|
@RequestParam(required = true) Long examId2) {
|
|
|
|