|  |  |  | 
|---|
|  |  |  | package com.ruoyi.study.service.impl; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | 
|---|
|  |  |  | import com.ruoyi.common.core.web.page.PageInfo; | 
|---|
|  |  |  | import com.ruoyi.study.domain.TStory; | 
|---|
|  |  |  | import com.ruoyi.study.domain.TStoryListen; | 
|---|
|  |  |  | import com.ruoyi.study.dto.SubjectQuery; | 
|---|
|  |  |  | 
|---|
|  |  |  | public class TStoryServiceImpl extends ServiceImpl<TStoryMapper, TStory> implements ITStoryService { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public List<SubjectVO> listAll(SubjectQuery query) { | 
|---|
|  |  |  | return this.baseMapper.listAll(query); | 
|---|
|  |  |  | public List<SubjectVO> listAll(SubjectQuery query, PageInfo<SubjectVO> res) { | 
|---|
|  |  |  | return this.baseMapper.listAll(query,res); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|