maven
2025-08-01 4f3a98f19143865cdc1de4791e8a95d96bd40c65
cnas-manage/src/main/java/com/ruoyi/manage/controller/InternalReportController.java
@@ -41,7 +41,7 @@
     */
    @ApiOperation(value = "内审报告分页查询")
    @PostMapping("/pageInternalReport")
    @GetMapping("/pageInternalReport")
    public Result<IPage<InternalReport>> pageInternalReport(Page page,InternalReport internalReport) throws Exception {
        return Result.success(internalReportService.pageInternalReport(page, internalReport));
    }
@@ -74,7 +74,7 @@
     */
    @ApiOperation(value = "内审报告删除")
    @GetMapping("/delInternalReport")
    @DeleteMapping("/delInternalReport")
    public Result delInternalReport(Integer reportId){
        return Result.success(internalReportService.removeById(reportId));
    }