| | |
| | | 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.excel.ApplyExcel; |
| | | import org.springblade.modules.apply.excel.ApplyInfoExcel; |
| | | import org.springblade.modules.apply.vo.ApplyPaPerVO; |
| | | import org.springblade.modules.apply.vo.ApplyVO; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | Integer getApplyNum(@Param("applyCode") String applyCode); |
| | | |
| | | /** |
| | | * 获取准考证信息(正式考试) |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | ApplyPaPerVO getApplyInfo(@Param("apply")Apply apply); |
| | | |
| | | /** |
| | | * 导出报名数数据 |
| | | * @param apply 报名对象 |
| | | * @return |
| | | */ |
| | | List<ApplyInfoExcel> getApplyExcelList(@Param("apply")Apply apply); |
| | | |
| | | /** |
| | | * 获取准考证信息(模拟考试) |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | ApplyPaPerVO getTrainApplyInfo(@Param("apply")Apply apply); |
| | | |
| | | /** |
| | | * 查询人员是否已报名 |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | Integer getIsApply(@Param("apply")Apply apply); |
| | | |
| | | /** |
| | | * 查询人员是否已报名 |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | List<Apply> getSecurityApplyInfo(@Param("apply")Apply apply); |
| | | |
| | | /** |
| | | * 查询报名人员未关联考试的ids集合 |
| | | * @return |
| | | */ |
| | | List<Long> getApplyIds(); |
| | | |
| | | /** |
| | | * 查询考试人数 |
| | | * @param id 考试id |
| | | * @return |
| | | */ |
| | | int getApplyDeatailNum(Long id); |
| | | |
| | | /** |
| | | * 查询已报名的的人信息集合 |
| | | * @param id 考试id |
| | | * @return |
| | | */ |
| | | List<ApplyVO> getApplyDetailList(Long id); |
| | | } |