| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.study.domain.TStoryListen; |
| | | import com.ruoyi.study.service.ITStoryListenService; |
| | | import com.ruoyi.study.mapper.TStoryListenMapper; |
| | | import com.ruoyi.study.service.ITStoryListenService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | public class TStoryListenServiceImpl extends ServiceImpl<TStoryListenMapper, TStoryListen> implements ITStoryListenService { |
| | | |
| | | @Override |
| | | public List<TStoryListen> storyDetail(Integer quarter, Integer week) { |
| | | public TStoryListen storyDetail(Integer quarter, Integer week) { |
| | | return baseMapper.storyDetail(quarter, week); |
| | | } |
| | | } |