OfficialDocumentPostMapper.java 488 B

12345678910111213141516171819
  1. package com.xjrsoft.module.oa.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.oa.entity.OfficialDocumentPost;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * @title: 公文发文
  7. * @Author dzx
  8. * @Date: 2023-12-07
  9. * @Version 1.0
  10. */
  11. @Mapper
  12. public interface OfficialDocumentPostMapper extends MPJBaseMapper<OfficialDocumentPost> {
  13. /**
  14. * 获取最新的公文号,在数据库中最大的基础上+1
  15. */
  16. Integer getMaxPostNumber();
  17. }