| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.core.tool.api.R; |
| | | 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 org.springblade.modules.exam.entity.ExamScore; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 考试报名服务类 |
| | |
| | | * @param isCovered |
| | | * @return |
| | | */ |
| | | void importApply(List<ApplyInfoExcel> data, Boolean isCovered); |
| | | void importApply(List<ApplyExcel> data, Boolean isCovered,Long examId); |
| | | |
| | | /** |
| | | * 获取准考证信息 |
| | |
| | | * @return |
| | | */ |
| | | Integer getIsApply(Apply apply); |
| | | |
| | | /** |
| | | * 查询人员是否已报名 |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | List<Apply> getSecurityApplyInfo(Apply apply); |
| | | |
| | | /** |
| | | * 查询报名人员未关联考试的ids集合 |
| | | * @return |
| | | */ |
| | | List<Apply> getApplyIds(ApplyVO applyVO); |
| | | |
| | | /** |
| | | * 查询报名清册信息 |
| | | * @param apply 报名信息 |
| | | * @return |
| | | */ |
| | | Map<String,Object> getApplyDetailList(ApplyVO apply); |
| | | |
| | | /** |
| | | * 查询保安员个人报名信息 |
| | | * @param apply 报名信息,包含userId |
| | | * @return |
| | | */ |
| | | ApplyVO getSecurityApplyDetail(ApplyVO apply); |
| | | |
| | | /** |
| | | * 修改考试状态 |
| | | * @param apply 报名信息,包含userId,applyid |
| | | * @return |
| | | */ |
| | | void updateApplyStatus(ApplyVO apply); |
| | | |
| | | /** |
| | | * 查询报名信息,取最新的一条(即当前userId,)applyId最大的一条记录 |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | Apply getMaxApplyIdByUserIdInfo(Long userId); |
| | | } |