| 1234567891011121314151617181920212223242526272829 |
- package com.xjrsoft.module.oa.service;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.oa.dto.AddOfficialDocumentReceivedHandleAlertSetDto;
- import com.xjrsoft.module.oa.dto.AddOfficialDocumentReceivedHandleDto;
- import com.xjrsoft.module.oa.dto.OfficialDocumentReceivedHandlePageDto;
- import com.xjrsoft.module.oa.entity.OfficialDocumentReceivedHandle;
- import com.xjrsoft.module.oa.vo.OfficialDocumentReceivedHandlePageVo;
- /**
- * @title: 公文收文-承办表
- * @Author dzx
- * @Date: 2025-04-14
- * @Version 1.0
- */
- public interface IOfficialDocumentReceivedHandleService extends MPJBaseService<OfficialDocumentReceivedHandle> {
- Page<OfficialDocumentReceivedHandlePageVo> getPage(Page<OfficialDocumentReceivedHandlePageVo> page, OfficialDocumentReceivedHandlePageDto dto);
- Boolean addAlertTime(AddOfficialDocumentReceivedHandleAlertSetDto dto);
- Boolean handle(AddOfficialDocumentReceivedHandleDto dto);
- Boolean transfer(AddOfficialDocumentReceivedHandleDto dto);
- Boolean noticeHandleUser(OfficialDocumentReceivedHandle handle);
- }
|