IOfficialDocumentReceivedHandleService.java 1.1 KB

1234567891011121314151617181920212223242526272829
  1. package com.xjrsoft.module.oa.service;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.github.yulichang.base.MPJBaseService;
  4. import com.xjrsoft.module.oa.dto.AddOfficialDocumentReceivedHandleAlertSetDto;
  5. import com.xjrsoft.module.oa.dto.AddOfficialDocumentReceivedHandleDto;
  6. import com.xjrsoft.module.oa.dto.OfficialDocumentReceivedHandlePageDto;
  7. import com.xjrsoft.module.oa.entity.OfficialDocumentReceivedHandle;
  8. import com.xjrsoft.module.oa.vo.OfficialDocumentReceivedHandlePageVo;
  9. /**
  10. * @title: 公文收文-承办表
  11. * @Author dzx
  12. * @Date: 2025-04-14
  13. * @Version 1.0
  14. */
  15. public interface IOfficialDocumentReceivedHandleService extends MPJBaseService<OfficialDocumentReceivedHandle> {
  16. Page<OfficialDocumentReceivedHandlePageVo> getPage(Page<OfficialDocumentReceivedHandlePageVo> page, OfficialDocumentReceivedHandlePageDto dto);
  17. Boolean addAlertTime(AddOfficialDocumentReceivedHandleAlertSetDto dto);
  18. Boolean handle(AddOfficialDocumentReceivedHandleDto dto);
  19. Boolean transfer(AddOfficialDocumentReceivedHandleDto dto);
  20. Boolean noticeHandleUser(OfficialDocumentReceivedHandle handle);
  21. }