| | |
| | | |
| | | import com.ruoyi.management.domain.TUseGuide; |
| | | import com.ruoyi.management.mapper.TUseGuideMapper; |
| | | import com.ruoyi.management.query.UseGuideQuery; |
| | | import com.ruoyi.management.service.ITUseGuideService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Service |
| | | public class TUseGuideServiceImpl extends ServiceImpl<TUseGuideMapper, TUseGuide> implements ITUseGuideService { |
| | | |
| | | @Override |
| | | public List<TUseGuide> listAll(UseGuideQuery query) { |
| | | return this.baseMapper.listAll(query); |
| | | } |
| | | @Override |
| | | public List<TUseGuide> listAllCount(UseGuideQuery query) { |
| | | return this.baseMapper.listAllCount(query); |
| | | } |
| | | } |