| | |
| | | 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.excel.ApplyInfoExcel; |
| | | import org.springblade.modules.apply.vo.ApplyPaPerVO; |
| | | import org.springblade.modules.apply.vo.ApplyVO; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | void importApply(List<ApplyExcel> data, Boolean isCovered); |
| | | |
| | | /** |
| | | * 获取准考证信息 |
| | | * @param apply |
| | | * @return |
| | | */ |
| | | ApplyPaPerVO getApplyInfo(Apply apply); |
| | | |
| | | /** |
| | | * 导出报名数数据 |
| | | * @param apply 报名对象 |
| | | */ |
| | | List<ApplyInfoExcel> getApplyExcelList(Apply apply); |
| | | } |