IWfCadreCandidateService.java 578 B

12345678910111213141516171819
  1. package com.xjrsoft.module.student.service;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.github.yulichang.base.MPJBaseService;
  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. /**
  8. * @title: 干部候选人
  9. * @Author szs
  10. * @Date: 2023-12-20
  11. * @Version 1.0
  12. */
  13. public interface IWfCadreCandidateService extends MPJBaseService<WfCadreCandidate> {
  14. IPage<WfCadreCandidatePageVo> getListPage(WfCadreCandidatePageDto dto);
  15. }