| | |
| | | * 文件修订申请审批记录 前端控制器 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @author |
| | | * @since 2024-11-14 10:29:18 |
| | | */ |
| | | @Api(tags = "记录的控制") |
| | |
| | | |
| | | @ApiOperation(value = "新增文件修订申请审批记录") |
| | | @PostMapping("/addManageRecordAudit") |
| | | public Result addManageRecordAudit(@RequestBody ManageRecordAudit manageRecordAudit){ |
| | | public Result addManageRecordAudit(ManageRecordAudit manageRecordAudit){ |
| | | return Result.success(manageRecordAuditService.addManageRecordAudit(manageRecordAudit)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "编辑文件修订申请审批记录") |
| | | @PostMapping("/doManageRecordAudit") |
| | | public Result doManageRecordAudit(@RequestBody ManageRecordAudit manageRecordAudit){ |
| | | public Result doManageRecordAudit(ManageRecordAudit manageRecordAudit){ |
| | | return Result.success(manageRecordAuditService.doManageRecordAudit(manageRecordAudit)); |
| | | } |
| | | |