| | |
| | | @PreAuthorize("@ss.hasPermi('system:projectProposal:delete')") |
| | | @Log(title = "项目课题方案信息-删除项目课题方案", businessType = BusinessType.DELETE) |
| | | @ApiOperation(value = "批量删除项目课题方案") |
| | | @DeleteMapping(value = "/api/t-project-proposal/deleteByIds") |
| | | @DeleteMapping(value = "/open/t-project-proposal/deleteByIds") |
| | | public R<Boolean> deleteByIds(@RequestBody List<String> ids) { |
| | | return R.ok(projectProposalService.removeByIds(ids)); |
| | | } |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:projectProposal:audit')") |
| | | @Log(title = "项目课题方案信息-审核项目课题方案", businessType = BusinessType.UPDATE) |
| | | @ApiOperation(value = "审核项目课题方案",response = UpAndDownDTO.class) |
| | | @ApiOperation(value = "审核项目课题方案",response = AuditStatusDTO.class) |
| | | @PostMapping(value = "/api/t-project-proposal/audit") |
| | | public R<Boolean> audit(@RequestBody String param) { |
| | | Long userId = tokenService.getLoginUser().getUserId(); |