| | |
| | | package com.ruoyi.management.service.impl; |
| | | |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.management.domain.TUseGuide; |
| | | import com.ruoyi.management.mapper.TUseGuideMapper; |
| | | import com.ruoyi.management.query.UseGuideQuery; |
| | |
| | | public List<TUseGuide> listAllCount(UseGuideQuery query) { |
| | | return this.baseMapper.listAllCount(query); |
| | | } |
| | | |
| | | @Override |
| | | public List<TUseGuide> pageList(String title, PageInfo<TUseGuide> res, Integer pageNumber, Integer pageSize) { |
| | | List<TUseGuide> list = this.baseMapper.pageList(title,res); |
| | | return list; |
| | | } |
| | | |
| | | |
| | | } |