| | |
| | | package com.ruoyi.manage.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.manage.pojo.ManageRecordIntervals; |
| | |
| | | * 文件定期审查记录 服务类 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @author |
| | | * @since 2024-11-13 10:54:31 |
| | | */ |
| | | public interface ManageRecordIntervalsService extends IService<ManageRecordIntervals> { |
| | | |
| | | Map<String,Object> pageManageRecordIntervals(Page page, ManageRecordIntervals manageRecordIntervals); |
| | | IPage<ManageRecordIntervals> pageManageRecordIntervals(Page page, ManageRecordIntervals manageRecordIntervals); |
| | | |
| | | String exportOutManageRecordIntervals(ManageRecordIntervals manageRecordIntervals, HttpServletResponse response); |
| | | |