| | |
| | | */ |
| | | @Override |
| | | public IPage<ApplyVO> selectApplyPage(IPage<ApplyVO> page, ApplyVO apply) { |
| | | if (null!=apply.getApplyStatus()){ |
| | | if(apply.getApplyStatus()==3){ |
| | | return page.setRecords(baseMapper.selectApplyPageStatis(page,apply)); |
| | | } |
| | | } |
| | | return page.setRecords(baseMapper.selectApplyPage(page, apply)); |
| | | } |
| | | |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<Long> getApplyIds() { |
| | | return baseMapper.getApplyIds(); |
| | | public List<Apply> getApplyIds(ApplyVO applyVO) { |
| | | applyVO.setSerialStart(applyVO.getSerialStart() -1); |
| | | applyVO.setSerialEnd(applyVO.getSerialEnd() -applyVO.getSerialStart()); |
| | | return baseMapper.getApplyIds(applyVO); |
| | | } |
| | | |
| | | /** |