| | |
| | | List<ApplyVO> selectApplyPage(IPage page, @Param("apply") ApplyVO apply); |
| | | |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | | * @param page 分页 |
| | | * @param apply 实体 |
| | | * @return |
| | | */ |
| | | List<ApplyVO> selectApplyPageStatis(IPage page, @Param("apply") ApplyVO apply); |
| | | |
| | | /** |
| | | * 详情 |
| | | * |
| | | * @param apply 考试报名信息对象 |
| | |
| | | * @param id 考试id |
| | | * @return |
| | | */ |
| | | int getApplyDeatailNum(Long id); |
| | | int getApplyDeatailNum(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 查询已报名的的人信息集合 |
| | | * @param id 考试id |
| | | * @return |
| | | */ |
| | | List<ApplyVO> getApplyDetailList(Long id); |
| | | List<ApplyVO> getApplyDetailList(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 查询保安员个人报名信息 |
| | |
| | | * @param id 考试id |
| | | * @return |
| | | */ |
| | | int getTrainDeatailNum(Long id); |
| | | int getTrainDeatailNum(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 查询已培训报名的的人信息集合 |
| | | * @param id 考试id |
| | | * @return |
| | | */ |
| | | List<ApplyVO> getTrainDetailList(Long id); |
| | | List<ApplyVO> getTrainDetailList(@Param("id") Long id); |
| | | |
| | | /** |
| | | * 查询报名信息,取最新的一条(即当前userId,)applyId最大的一条记录 |