WfOaPullMapper.java 413 B

1234567891011121314151617
  1. package com.xjrsoft.module.oa.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.oa.entity.WfOaPull;
  5. import org.apache.ibatis.annotations.Mapper;
  6. /**
  7. * @title: 文件收发表
  8. * @Author fanxp
  9. * @Date: 2023-11-02
  10. * @Version 1.0
  11. */
  12. @Mapper
  13. public interface WfOaPullMapper extends MPJBaseMapper<WfOaPull> {
  14. }