| | |
| | | |
| | | 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.ApplyVO; |
| | | |
| | | 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); |
| | | |
| | | /** |
| | | * 获取准考证信息 |
| | |
| | | * @return |
| | | */ |
| | | List<Long> getApplyIds(); |
| | | |
| | | /** |
| | | * 查询报名清册信息 |
| | | * @param apply 报名信息 |
| | | * @return |
| | | */ |
| | | Map<String,Object> getApplyDetailList(ApplyVO apply); |
| | | } |