xuhy
2025-05-08 a421992282192beb6a2dcca8614e03eca8a766cf
ruoyi-admin/src/main/java/com/ruoyi/web/controller/api/TProjectProposalController.java
@@ -123,7 +123,7 @@
    @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));
    }
@@ -148,7 +148,7 @@
     */
    @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();