| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.apply.entity.Apply; |
| | | import org.springblade.modules.apply.excel.ApplyExcel; |
| | | import org.springblade.modules.apply.vo.ApplyVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 考试报名服务类 |
| | |
| | | * @return |
| | | */ |
| | | int getCandidateNoCount(String result); |
| | | |
| | | /** |
| | | * 获取公司集体报名的人数 |
| | | * @param applyCode |
| | | * @return |
| | | */ |
| | | Integer getApplyNum(String applyCode); |
| | | |
| | | /** |
| | | * 导入考试数据 |
| | | * |
| | | * @param data |
| | | * @param isCovered |
| | | * @return |
| | | */ |
| | | void importApply(List<ApplyExcel> data, Boolean isCovered); |
| | | } |