| 12345678910111213141516171819 |
- package com.xjrsoft.module.student.service;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.github.yulichang.base.MPJBaseService;
- import com.xjrsoft.module.student.dto.WfCadreCandidatePageDto;
- import com.xjrsoft.module.student.entity.WfCadreCandidate;
- import com.xjrsoft.module.student.vo.WfCadreCandidatePageVo;
- /**
- * @title: 干部候选人
- * @Author szs
- * @Date: 2023-12-20
- * @Version 1.0
- */
- public interface IWfCadreCandidateService extends MPJBaseService<WfCadreCandidate> {
- IPage<WfCadreCandidatePageVo> getListPage(WfCadreCandidatePageDto dto);
- }
|