| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.apply.entity.Apply; |
| | | import org.springblade.modules.apply.vo.ApplyPaPerVO; |
| | | import org.springblade.modules.apply.vo.ApplyVO; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | ApplyVO selectApplyInfo(@Param("apply") Apply apply); |
| | | |
| | | /** |
| | | * 获取准考证前缀相同的数量 |
| | | * @param result 前缀 |
| | | * @return |
| | | */ |
| | | int getCandidateNoCount(@Param("result")String result); |
| | | |
| | | /** |
| | | * 获取公司集体报名的人数 |
| | | * @param applyCode |
| | | * @return |
| | | */ |
| | | Integer getApplyNum(@Param("applyCode") String applyCode); |
| | | |
| | | /** |
| | | * 获取准考证信息 |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | ApplyPaPerVO getApplyInfo(@Param("apply")Apply apply); |
| | | } |