|
|
|
@ -48,8 +48,9 @@ public class EnterpriseInspectionsController {
|
|
|
|
|
@PostMapping("/passOn") |
|
|
|
|
@Operation(summary = "执法记录转交") |
|
|
|
|
@PreAuthorize("@ss.hasPermission('system:enterprise-inspections:create')") |
|
|
|
|
public CommonResult<Long> passOn(@Valid @RequestBody PassOnSaveVO passOnSaveVO) { |
|
|
|
|
return success(enterpriseInspectionsService.passOn(passOnSaveVO)); |
|
|
|
|
public CommonResult<String> passOn(@Valid @RequestBody PassOnSaveVO passOnSaveVO) { |
|
|
|
|
enterpriseInspectionsService.passOn(passOnSaveVO); |
|
|
|
|
return success("转发成功"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@PutMapping("/update") |
|
|
|
|