zhuo
2025-04-23 234b0ac195934b34c06045b2d2ef0f10e239dd8e
cnas-manage/src/main/java/com/ruoyi/manage/controller/ManageRecordIntervalsController.java
@@ -12,10 +12,7 @@
import com.deepoove.poi.data.style.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.annotation.Resource;
@@ -27,7 +24,7 @@
 * 文件定期审查记录 前端控制器
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @author
 * @since 2024-11-13 10:54:31
 */
@Api(tags = "记录的控制")
@@ -39,7 +36,7 @@
    private ManageRecordIntervalsService manageRecordIntervalsService;
    @ApiOperation(value = "分页查询文件定期审查记录")
    @PostMapping("/pageManageRecordIntervals")
    @GetMapping("/pageManageRecordIntervals")
    public Result pageManageRecordIntervals(Page page,ManageRecordIntervals manageRecordIntervals) throws Exception {
        return Result.success(manageRecordIntervalsService.pageManageRecordIntervals(page, manageRecordIntervals));
    }
@@ -58,13 +55,13 @@
    }
    @ApiOperation(value = "删除文件定期审查记录")
    @PostMapping("/delManageRecordIntervals")
    @DeleteMapping("/delManageRecordIntervals")
    public Result delManageRecordIntervals(Integer id) {
        return Result.success(manageRecordIntervalsService.delManageRecordIntervals(id));
    }
    @ApiOperation(value = "导出文件定期审查记录")
    @PostMapping("/exportOutManageRecordIntervals")
    @GetMapping("/exportOutManageRecordIntervals")
    public Result exportOutManageRecordIntervals(ManageRecordIntervals manageRecordIntervals, HttpServletResponse response) throws Exception {
        return Result.success(manageRecordIntervalsService.exportOutManageRecordIntervals(manageRecordIntervals,response));
    }