From 31eeb56bca1a2587ba020e0293f0eaf034ed55a5 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Thu, 26 Oct 2023 16:43:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=8A=9E=E7=90=86?= =?UTF-8?q?=E7=BB=93=E6=9E=9C=E7=B1=BB=E5=9E=8Bbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/ProcessESInitChangeController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/esInitChange/controller/ProcessESInitChangeController.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/esInitChange/controller/ProcessESInitChangeController.java index f5483952..c8661dd2 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/esInitChange/controller/ProcessESInitChangeController.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/esInitChange/controller/ProcessESInitChangeController.java @@ -86,8 +86,8 @@ public class ProcessESInitChangeController { */ @AutoLog(value = "企标立项变更流程-办理") @ApiOperation(value="企标立项变更流程-办理", notes="企标立项变更流程-办理") - @PostMapping("/handle") - public Result handle(@RequestParam(value = "taskId") String taskId) { + @GetMapping("/handle/{taskId}") + public Result handle(@PathVariable("taskId") String taskId) { return Result.OK(initChangeService.getHandleData(taskId)); }