From 3efe9f4bb77998acb03f50ebc56106837a01fb1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=90=A6=E6=B6=9B?= Date: Tue, 8 Oct 2024 18:10:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=97=AE=E9=A2=98=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E6=A0=A1=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../part/controller/ProcessPartTypeApplyRecordController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/part/controller/ProcessPartTypeApplyRecordController.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/part/controller/ProcessPartTypeApplyRecordController.java index 827e487c..d2bc1cca 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/part/controller/ProcessPartTypeApplyRecordController.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/part/controller/ProcessPartTypeApplyRecordController.java @@ -115,7 +115,7 @@ public class ProcessPartTypeApplyRecordController { @ApiOperationSupport(order = 5) @PostMapping(value = "/add") // @RequiresPermissions("keyPartBindingManage:add") - public Result add(@Validated @RequestBody ProcessPartTypeApplyRecord processPartTypeApplyRecord) { + public Result add(@RequestBody ProcessPartTypeApplyRecord processPartTypeApplyRecord) { String id = processPartTypeApplyRecordService.add(processPartTypeApplyRecord); return Result.OK(id); }