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