IOfficialDocumentReceivedService.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.xjrsoft.module.oa.service;
  2. import com.github.yulichang.base.MPJBaseService;
  3. import com.xjrsoft.module.oa.entity.OfficialDocumentReceived;
  4. import com.xjrsoft.module.oa.vo.NextReviewerListVo;
  5. import java.util.List;
  6. /**
  7. * @title: 公文收文
  8. * @Author szs
  9. * @Date: 2024-03-13
  10. * @Version 1.0
  11. */
  12. public interface IOfficialDocumentReceivedService extends MPJBaseService<OfficialDocumentReceived> {
  13. /**
  14. * 获取最新的收文号,在数据库中最大的基础上+1
  15. */
  16. String getMaxReceivedNumber();
  17. String getMaxMeetingNumber();
  18. Boolean noticeHandleDutyUser(Long formId);
  19. /**
  20. * 行政收文流程ID固化
  21. *
  22. * @param id
  23. * @return
  24. */
  25. void taskIdPersist(Long id);
  26. /**
  27. * 获取当前行政收文流程下一节点审核人列表
  28. * @param taskId
  29. */
  30. List<NextReviewerListVo> nextReviewerList(String taskId);
  31. /**
  32. * 获取当前行政收文流程下一节点落实人列表
  33. * @param taskId
  34. */
  35. List<NextReviewerListVo> nextExecutorList(String taskId);
  36. }