zhuo
2025-02-21 98154abb1b191d8a353417709ea1afc9984e1864
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));
    }