WfCadreCandidateMapper.java 666 B

12345678910111213141516171819
  1. package com.xjrsoft.module.student.mapper;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.github.yulichang.base.MPJBaseMapper;
  4. import com.xjrsoft.module.student.dto.WfCadreCandidatePageDto;
  5. import com.xjrsoft.module.student.entity.WfCadreCandidate;
  6. import com.xjrsoft.module.student.vo.WfCadreCandidatePageVo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. /**
  9. * @title: 干部候选人
  10. * @Author szs
  11. * @Date: 2023-12-20
  12. * @Version 1.0
  13. */
  14. @Mapper
  15. public interface WfCadreCandidateMapper extends MPJBaseMapper<WfCadreCandidate> {
  16. IPage<WfCadreCandidatePageVo> getListPage(IPage<WfCadreCandidatePageDto> page, WfCadreCandidatePageDto dto);
  17. }