diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/EnterpriseInspectionsController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/EnterpriseInspectionsController.java index d0a12fc..34f8903 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/EnterpriseInspectionsController.java +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/enterpriseinspections/EnterpriseInspectionsController.java @@ -48,8 +48,9 @@ public class EnterpriseInspectionsController { @PostMapping("/passOn") @Operation(summary = "执法记录转交") @PreAuthorize("@ss.hasPermission('system:enterprise-inspections:create')") - public CommonResult passOn(@Valid @RequestBody PassOnSaveVO passOnSaveVO) { - return success(enterpriseInspectionsService.passOn(passOnSaveVO)); + public CommonResult passOn(@Valid @RequestBody PassOnSaveVO passOnSaveVO) { + enterpriseInspectionsService.passOn(passOnSaveVO); + return success("转发成功"); } @PutMapping("/update")