| | |
| | | public List<ApplyInfoExcel> getApplyExcelList(Apply apply) { |
| | | return baseMapper.getApplyExcelList(apply); |
| | | } |
| | | |
| | | /** |
| | | * 查询人员是否已报名 |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | @Override |
| | | public Integer getIsApply(Apply apply) { |
| | | return baseMapper.getIsApply(apply); |
| | | } |
| | | |
| | | /** |
| | | * 查询人员是否已报名 |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<Apply> getSecurityApplyInfo(Apply apply) { |
| | | return baseMapper.getSecurityApplyInfo(apply); |
| | | } |
| | | |
| | | /** |
| | | * 查询报名人员未关联考试的ids集合 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<Long> getApplyIds() { |
| | | return baseMapper.getApplyIds(); |
| | | } |
| | | } |